Interface AuditProcessorEnablerReceiver

All Superinterfaces:
OsidReceiver

public interface AuditProcessorEnablerReceiver extends OsidReceiver

The audit receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted AuditProcessorEnablers .

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedAuditProcessorEnablers(Id notificationId, IdList auditProcessorEnablerIds)
    The callback for notification of updated audit processor enablers.
    void
    deletedAuditProcessorEnablers(Id notificationId, IdList auditProcessorEnablerIds)
    The callback for notification of deleted audit processor enablers.
    void
    newAuditProcessorEnablers(Id notificationId, IdList auditProcessorEnablerIds)
    The callback for notifications of new audit processor enablers.

    Methods inherited from interface OsidReceiver

    down, up
    Modifier and Type
    Method
    Description
    void
    The callback for notifications that the notification bus is not operating.
    void
    up()
    The callback for notifications that the notification bus is operational.
  • Method Details

    • newAuditProcessorEnablers

      void newAuditProcessorEnablers(Id notificationId, IdList auditProcessorEnablerIds)
      The callback for notifications of new audit processor enablers.
      Parameters:
      notificationId - the notification Id
      auditProcessorEnablerIds - the Id of the new AuditProcessorEnablers
      Compliance:
      mandatory - This method must be implemented.
    • changedAuditProcessorEnablers

      void changedAuditProcessorEnablers(Id notificationId, IdList auditProcessorEnablerIds)
      The callback for notification of updated audit processor enablers.
      Parameters:
      notificationId - the notification Id
      auditProcessorEnablerIds - the Id of the updated AuditProcessorEnablers
      Compliance:
      mandatory - This method must be implemented.
    • deletedAuditProcessorEnablers

      void deletedAuditProcessorEnablers(Id notificationId, IdList auditProcessorEnablerIds)
      The callback for notification of deleted audit processor enablers.
      Parameters:
      notificationId - the notification Id
      auditProcessorEnablerIds - the Id of the deleted AuditProcessorEnablers
      Compliance:
      mandatory - This method must be implemented.