Interface AuditEnablerReceiver

All Superinterfaces:
OsidReceiver

public interface AuditEnablerReceiver extends OsidReceiver

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

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedAuditEnablers(Id notificationId, IdList auditEnablerIds)
    The callback for notification of updated audit enablers.
    void
    deletedAuditEnablers(Id notificationId, IdList auditEnablerIds)
    The callback for notification of deleted audit enablers.
    void
    newAuditEnablers(Id notificationId, IdList auditEnablerIds)
    The callback for notifications of new audit 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

    • newAuditEnablers

      void newAuditEnablers(Id notificationId, IdList auditEnablerIds)
      The callback for notifications of new audit enablers.
      Parameters:
      notificationId - the notification Id
      auditEnablerIds - the Ids of the new AuditEnablers
      Compliance:
      mandatory - This method must be implemented.
    • changedAuditEnablers

      void changedAuditEnablers(Id notificationId, IdList auditEnablerIds)
      The callback for notification of updated audit enablers.
      Parameters:
      notificationId - the notification Id
      auditEnablerIds - the Ids of the updated AuditEnablers
      Compliance:
      mandatory - This method must be implemented.
    • deletedAuditEnablers

      void deletedAuditEnablers(Id notificationId, IdList auditEnablerIds)
      The callback for notification of deleted audit enablers.
      Parameters:
      notificationId - the notification Id
      auditEnablerIds - the Ids of the deleted AuditEnablers
      Compliance:
      mandatory - This method must be implemented.