public interface AuditReceiver extends OsidReceiver
The audit receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted audits.
| Modifier and Type | Method and 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.
|
down, upvoid newAudits(Id notificationId, IdList auditIds)
notificationId - the notification Id auditIds - the Ids of the new Audits
mandatory - This method must be implemented. void changedAudits(Id notificationId, IdList auditIds)
notificationId - the notification Id auditIds - the Ids of the updated Audits
mandatory - This method must be implemented.