public interface ActionGroupReceiver extends OsidReceiver
The action group receiver is the consumer supplied interface for
receiving notifications pertaining to new, updated or deleted
ActionGroup objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedActionGroups(Id notificationId,
IdList actionGroupIds)
The callback for notification of updated action group.
|
void |
deletedActionGroups(Id notificationId,
IdList actionGroupIds)
The callback for notification of deleted action groups.
|
void |
newActionGroups(Id notificationId,
IdList actionGroupIds)
The callback for notifications of new action groups.
|
down, upvoid newActionGroups(Id notificationId, IdList actionGroupIds)
notificationId - the notification Id actionGroupIds - the Ids of the new
ActionGroups mandatory - This method must be implemented. void changedActionGroups(Id notificationId, IdList actionGroupIds)
notificationId - the notification Id actionGroupIds - the Ids of the updated
ActionGroups mandatory - This method must be implemented. void deletedActionGroups(Id notificationId, IdList actionGroupIds)
notificationId - the notification Id actionGroupIds - the Ids of the deleted
ActionGroups mandatory - This method must be implemented.