Interface AuditConstrainerEnablerReceiver

All Superinterfaces:
OsidReceiver

public interface AuditConstrainerEnablerReceiver extends OsidReceiver

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

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedAuditConstrainerEnablers(Id notificationId, IdList auditConstrainerEnablerIds)
    The callback for notification of updated audit constrainer enablers.
    void
    deletedAuditConstrainerEnablers(Id notificationId, IdList auditConstrainerEnablerIds)
    The callback for notification of deleted audit constrainer enablers.
    void
    newAuditConstrainerEnablers(Id notificationId, IdList auditConstrainerEnablerIds)
    The callback for notifications of new audit constrainer 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

    • newAuditConstrainerEnablers

      void newAuditConstrainerEnablers(Id notificationId, IdList auditConstrainerEnablerIds)
      The callback for notifications of new audit constrainer enablers.
      Parameters:
      notificationId - the notification Id
      auditConstrainerEnablerIds - the Id of the new AuditConstrainerEnablers
      Compliance:
      mandatory - This method must be implemented.
    • changedAuditConstrainerEnablers

      void changedAuditConstrainerEnablers(Id notificationId, IdList auditConstrainerEnablerIds)
      The callback for notification of updated audit constrainer enablers.
      Parameters:
      notificationId - the notification Id
      auditConstrainerEnablerIds - the Id of the updated AuditConstrainerEnablers
      Compliance:
      mandatory - This method must be implemented.
    • deletedAuditConstrainerEnablers

      void deletedAuditConstrainerEnablers(Id notificationId, IdList auditConstrainerEnablerIds)
      The callback for notification of deleted audit constrainer enablers.
      Parameters:
      notificationId - the notification Id
      auditConstrainerEnablerIds - the Id of the deleted AuditConstrainerEnablers
      Compliance:
      mandatory - This method must be implemented.