public interface ActionEnablerReceiver extends OsidReceiver
The action enabler receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted action enablers.
| Modifier and Type | Method and Description |
|---|---|
void |
changedActionEnablers(Id notificationId,
IdList actionEnablerIds)
The callback for notification of updated action enablers.
|
void |
deletedActionEnablers(Id notificationId,
IdList actionEnablerIds)
The callback for notification of deleted action enablers.
|
void |
newActionEnablers(Id notificationId,
IdList actionEnablerIds)
The callback for notifications of new action enablers.
|
down, upvoid newActionEnablers(Id notificationId, IdList actionEnablerIds)
notificationId - the notification Id actionEnablerIds - the Ids of the new
ActionEnablers mandatory - This method must be implemented. void changedActionEnablers(Id notificationId, IdList actionEnablerIds)
notificationId - the notification Id actionEnablerIds - the Ids of the updated
ActionEnablers mandatory - This method must be implemented. void deletedActionEnablers(Id notificationId, IdList actionEnablerIds)
notificationId - the notification Id actionEnablerIds - the Ids of the deleted
ActionEnablers mandatory - This method must be implemented.