Interface AuditConstrainerReceiver

All Superinterfaces:
OsidReceiver

public interface AuditConstrainerReceiver extends OsidReceiver

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

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedAuditConstrainers(Id notificationId, IdList auditConstrainerIds)
    The callback for notification of updated audit constrainers.
    void
    deletedAuditConstrainers(Id notificationId, IdList auditConstrainerIds)
    The callback for notification of deleted audit constrainers.
    void
    newAuditConstrainers(Id notificationId, IdList auditConstrainerIds)
    The callback for notifications of new audit constrainers.

    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

    • newAuditConstrainers

      void newAuditConstrainers(Id notificationId, IdList auditConstrainerIds)
      The callback for notifications of new audit constrainers.
      Parameters:
      notificationId - the notification Id
      auditConstrainerIds - the Id of the new AuditConstrainers
      Compliance:
      mandatory - This method must be implemented.
    • changedAuditConstrainers

      void changedAuditConstrainers(Id notificationId, IdList auditConstrainerIds)
      The callback for notification of updated audit constrainers.
      Parameters:
      notificationId - the notification Id
      auditConstrainerIds - the Id of the updated AuditConstrainers
      Compliance:
      mandatory - This method must be implemented.
    • deletedAuditConstrainers

      void deletedAuditConstrainers(Id notificationId, IdList auditConstrainerIds)
      The callback for notification of deleted audit constrainers.
      Parameters:
      notificationId - the notification Id
      auditConstrainerIds - the Id of the deleted AuditConstrainers
      Compliance:
      mandatory - This method must be implemented.