public interface CommitmentEnablerReceiver extends OsidReceiver
The commitment enabler receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted commitment enablers.
| Modifier and Type | Method and Description |
|---|---|
void |
changedCommitmentEnablers(Id notificationId,
IdList commitmentEnablerIds)
The callback for notification of updated commitment enablers.
|
void |
deletedCommitmentEnablers(Id notificationId,
IdList commitmentEnablerIds)
The callback for notification of deleted commitment enablers.
|
void |
newCommitmentEnablers(Id notificationId,
IdList commitmentEnablerIds)
The callback for notifications of new commitment enablers.
|
down, upvoid newCommitmentEnablers(Id notificationId, IdList commitmentEnablerIds)
notificationId - the notification Id commitmentEnablerIds - the Id of the new
CommitmentEnablers mandatory - This method must be implemented. void changedCommitmentEnablers(Id notificationId, IdList commitmentEnablerIds)
notificationId - the notification Id commitmentEnablerIds - the Id of the updated
CommitmentEnablers mandatory - This method must be implemented. void deletedCommitmentEnablers(Id notificationId, IdList commitmentEnablerIds)
notificationId - the notification Id commitmentEnablerIds - the Id of the deleted
CommitmentEnablers mandatory - This method must be implemented.