public interface AuditEnablerReceiver extends OsidReceiver
The audit enabler receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted audit enablers.
| Modifier and Type | Method and Description |
|---|---|
void |
changedAuditEnablers(Id notificationId,
IdList auditEnablerIds)
The callback for notification of updated audit enablers.
|
void |
deletedAuditEnablers(Id notificationId,
IdList auditEnablerIds)
The callback for notification of deleted audit enablers.
|
void |
newAuditEnablers(Id notificationId,
IdList auditEnablerIds)
The callback for notifications of new audit enablers.
|
down, upvoid newAuditEnablers(Id notificationId, IdList auditEnablerIds)
notificationId - the notification IdauditEnablerIds - the Ids of the new
AuditEnablers mandatory - This method must be implemented. void changedAuditEnablers(Id notificationId, IdList auditEnablerIds)
notificationId - the notification IdauditEnablerIds - the Ids of the updated
AuditEnablers mandatory - This method must be implemented. void deletedAuditEnablers(Id notificationId, IdList auditEnablerIds)
notificationId - the notification Id auditEnablerIds - the Ids of the deleted
AuditEnablers mandatory - This method must be implemented.