public interface MapReceiver extends OsidReceiver
The map receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Map
objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedChildOfMaps(Id notificationId,
IdList mapIds)
The callback for notifications of changes to children of map hierarchy
nodes.
|
void |
changedMaps(Id notificationId,
IdList mapIds)
The callback for notification of updated map.
|
void |
deletedMaps(Id notificationId,
IdList mapIds)
The callback for notification of deleted maps.
|
void |
newMaps(Id notificationId,
IdList mapIds)
The callback for notifications of new maps.
|
down, upvoid newMaps(Id notificationId, IdList mapIds)
notificationId - the notification Id mapIds - the Ids of the new Maps mandatory - This method must be implemented. void changedMaps(Id notificationId, IdList mapIds)
notificationId - the notification Id mapIds - the Ids of the updated Maps
mandatory - This method must be implemented. void deletedMaps(Id notificationId, IdList mapIds)
notificationId - the notification Id mapIds - the Ids of the deleted Maps
mandatory - This method must be implemented. void changedChildOfMaps(Id notificationId, IdList mapIds)
notificationId - the notification Id mapIds - the Ids of the Maps whose
children have changedmandatory - This method must be implemented.