public interface HierarchyStructureReceiver extends OsidReceiver
The hierarchy receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted hierarchy nodes.
| Modifier and Type | Method and Description |
|---|---|
void |
changedChildOfNodes(Id notificationId,
IdList nodeIds)
The callback for notifications of changes to children of hierarchy
nodes.
|
void |
deletedNodes(Id notificationId,
IdList nodeIds)
the callback for notification of deleted hierarchy nodes.
|
void |
newNodes(Id notificationId,
Id nodeIds)
The callback for notifications of new hierarchy nodes.
|
down, upvoid newNodes(Id notificationId, Id nodeIds)
notificationId - the notification Id nodeIds - the Ids of the new nodesmandatory - This method must be implemented. void deletedNodes(Id notificationId, IdList nodeIds)
notificationId - the notification Id nodeIds - the Ids of the deleted nodesmandatory - This method must be implemented. void changedChildOfNodes(Id notificationId, IdList nodeIds)
notificationId - the notification Id nodeIds - the Ids of the nodes whose children
have changedmandatory - This method must be implemented.