public interface CompositionEnablerReceiver extends OsidReceiver
The composition enabler receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted composition enablers.
| Modifier and Type | Method and Description |
|---|---|
void |
changedCompositionEnablers(Id notificationId,
IdList compositionEnablerIds)
The callback for notification of updated composition enablers.
|
void |
deletedCompositionEnablers(Id notificationId,
IdList compositionEnablerIds)
The callback for notification of deleted composition enablers.
|
void |
newCompositionEnablers(Id notificationId,
IdList compositionEnablerIds)
The callback for notifications of new composition enablers.
|
down, upvoid newCompositionEnablers(Id notificationId, IdList compositionEnablerIds)
notificationId - the notification Id compositionEnablerIds - the Ids of the new
CompositionEnablers mandatory - This method must be implemented. void changedCompositionEnablers(Id notificationId, IdList compositionEnablerIds)
notificationId - the notification Id compositionEnablerIds - the Ids of the updated
CompositionEnablers mandatory - This method must be implemented. void deletedCompositionEnablers(Id notificationId, IdList compositionEnablerIds)
notificationId - the notification Id compositionEnablerIds - the Ids of the deleted
CompositionEnablers mandatory - This method must be implemented.