Interface AuditProcessorReceiver

All Superinterfaces:
OsidReceiver

public interface AuditProcessorReceiver extends OsidReceiver

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

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedAuditProcessors(Id notificationId, IdList auditProcessorIds)
    The callback for notification of updated audit processors.
    void
    deletedAuditProcessors(Id notificationId, IdList auditProcessorIds)
    The callback for notification of deleted audit processors.
    void
    newAuditProcessors(Id notificationId, IdList auditProcessorIds)
    The callback for notifications of new audit processors.

    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

    • newAuditProcessors

      void newAuditProcessors(Id notificationId, IdList auditProcessorIds)
      The callback for notifications of new audit processors.
      Parameters:
      notificationId - the notification Id
      auditProcessorIds - the Id of the new AuditProcessors
      Compliance:
      mandatory - This method must be implemented.
    • changedAuditProcessors

      void changedAuditProcessors(Id notificationId, IdList auditProcessorIds)
      The callback for notification of updated audit processors.
      Parameters:
      notificationId - the notification Id
      auditProcessorIds - the Id of the updated AuditProcessors
      Compliance:
      mandatory - This method must be implemented.
    • deletedAuditProcessors

      void deletedAuditProcessors(Id notificationId, IdList auditProcessorIds)
      The callback for notification of deleted audit processors.
      Parameters:
      notificationId - the notification Id
      auditProcessorIds - the Id of the deleted AuditProcessors
      Compliance:
      mandatory - This method must be implemented.