public interface AgencyReceiver extends OsidReceiver
The agency receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Agency
objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedAgencies(Id notificationId,
IdList agencyIds)
The callback for notification of updated agencies.
|
void |
changedChildOfAgencies(Id notificationId,
IdList agencyIds)
The callback for notifications of changes to children of agency
hierarchy nodes.
|
void |
deletedAgencies(Id notificationId,
IdList agencyIds)
The callback for notification of deleted agencies.
|
void |
newAgencies(Id notificationId,
IdList agencyIds)
The callback for notifications of new agencies.
|
down, upvoid newAgencies(Id notificationId, IdList agencyIds)
notificationId - the notification Id agencyIds - the Ids of the new Agencies
mandatory - This method must be implemented. void changedAgencies(Id notificationId, IdList agencyIds)
notificationId - the notification Id agencyIds - the Ids of the updated
Agencies mandatory - This method must be implemented. void deletedAgencies(Id notificationId, IdList agencyIds)
notificationId - the notification Id agencyIds - the Ids of the deleted
Agencies mandatory - This method must be implemented. void changedChildOfAgencies(Id notificationId, IdList agencyIds)
notificationId - the notification Id agencyIds - the Ids of the Agencies
whose children have changedmandatory - This method must be implemented.