public interface LocationReceiver extends OsidReceiver
The location receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted locations.
| Modifier and Type | Method and Description |
|---|---|
void |
changedChildOfLocations(Id notificationId,
IdList locationIds)
The callback for notifications of changes to children of location
hierarchy nodes.
|
void |
changedLocations(Id notificationId,
IdList locationIds)
The callback for notification of updated locations.
|
void |
deletedLocations(Id notificationId,
IdList locationIds)
The callback for notification of deleted locations.
|
void |
newLocations(Id notificationId,
IdList locationIds)
The callback for notifications of new locations.
|
down, upvoid newLocations(Id notificationId, IdList locationIds)
notificationId - the notification Id locationIds - the Ids of the new Locations
mandatory - This method must be implemented. void changedLocations(Id notificationId, IdList locationIds)
notificationId - the notification Id locationIds - the Ids of the updated
Locations mandatory - This method must be implemented. void deletedLocations(Id notificationId, IdList locationIds)
notificationId - the notification Id locationIds - the Ids of the deleted
Locations mandatory - This method must be implemented. void changedChildOfLocations(Id notificationId, IdList locationIds)
notificationId - the notification Id locationIds - the Ids of the Locations
whose children have changedmandatory - This method must be implemented.