public interface SystemReceiver extends OsidReceiver
The system receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted System
objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedChildOfSystems(Id notificationId,
IdList systemIds)
The callback for notifications of changes to children of system
hierarchy nodes.
|
void |
changedSystems(Id notificationId,
IdList systemIds)
The callback for notification of updated system.
|
void |
deletedSystems(Id notificationId,
IdList systemIds)
The callback for notification of deleted systems.
|
void |
newSystems(Id notificationId,
IdList systemIds)
The callback for notifications of new systems.
|
down, upvoid newSystems(Id notificationId, IdList systemIds)
notificationId - the notification Id systemIds - the Ids of the new Systems
mandatory - This method must be implemented. void changedSystems(Id notificationId, IdList systemIds)
notificationId - the notification Id systemIds - the Ids of the updated Systems
mandatory - This method must be implemented. void deletedSystems(Id notificationId, IdList systemIds)
notificationId - the notification Id systemIds - the Ids of the deleted Systems
mandatory - This method must be implemented. void changedChildOfSystems(Id notificationId, IdList systemIds)
notificationId - the notification Id systemIds - the Ids of the Systems
whose children have changedmandatory - This method must be implemented.