Interface AuditReceiver

All Superinterfaces:
OsidReceiver

public interface AuditReceiver extends OsidReceiver

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

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedAudits(Id notificationId, IdList auditIds)
    The callback for notification of updated audits.
    void
    deletedAudits(Id notificationId, IdList auditIds)
    The callback for notification of deleted audits.
    void
    newAudits(Id notificationId, IdList auditIds)
    The callback for notifications of new audits.

    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

    • newAudits

      void newAudits(Id notificationId, IdList auditIds)
      The callback for notifications of new audits.
      Parameters:
      notificationId - the notification Id
      auditIds - the Ids of the new Audits
      Compliance:
      mandatory - This method must be implemented.
    • changedAudits

      void changedAudits(Id notificationId, IdList auditIds)
      The callback for notification of updated audits.
      Parameters:
      notificationId - the notification Id
      auditIds - the Ids of the updated Audits
      Compliance:
      mandatory - This method must be implemented.
    • deletedAudits

      void deletedAudits(Id notificationId, IdList auditIds)
      The callback for notification of deleted audits.
      Parameters:
      notificationId - the notification Id
      auditIds - the Ids of the deleted Audits
      Compliance:
      mandatory - This method must be implemented.