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 |
changedActionGroup(Id actionGroupId)
The callback for notification of updated action group.
|
void |
deletedActionGroup(Id actionGroupId)
The callback for notification of deleted action groups.
|
void |
newActionGroup(Id actionGroupId)
The callback for notifications of new action groups.
|
down, up
void newActionGroup(Id actionGroupId)
actionGroupId
- the Id
of the new
ActionGroup
mandatory
- This method must be implemented. void changedActionGroup(Id actionGroupId)
actionGroupId
- the Id
of the updated
ActionGroup
mandatory
- This method must be implemented. void deletedActionGroup(Id actionGroupId)
actionGroupId
- the Id
of the deleted
ActionGroup
mandatory
- This method must be implemented.