public interface StateReceiver extends OsidReceiver
The state receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted State
objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedStates(Id notificationId,
IdList stateIds)
The callback for notification of updated states.
|
void |
deletedStates(Id notificationId,
IdList stateIds)
the callback for notification of deleted states.
|
void |
newStates(Id notificationId,
IdList stateIds)
The callback for notifications of new states.
|
down, upvoid newStates(Id notificationId, IdList stateIds)
notificationId - the notification Id stateIds - the Ids of the new States
mandatory - This method must be implemented. void changedStates(Id notificationId, IdList stateIds)
notificationId - the notification Id stateIds - the Ids of the updated States
mandatory - This method must be implemented.