public interface PathReceiver extends OsidReceiver
The path receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Path
objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedPaths(IdList pathIds)
The callback for notification of updated paths.
|
void |
deletedPaths(IdList pathIds)
The callback for notification of deleted paths.
|
void |
newPaths(IdList pathIds)
The callback for notifications of new paths.
|
down, upvoid newPaths(IdList pathIds)
pathIds - the Ids of the new Paths mandatory - This method must be implemented. void changedPaths(IdList pathIds)
pathIds - the Ids of the updated Paths
mandatory - This method must be implemented. void deletedPaths(IdList pathIds)
pathIds - the Ids of the deleted Paths
mandatory - This method must be implemented.