public interface AddressBookReceiver extends OsidReceiver
The address book receiver is the consumer supplied interface for
receiving notifications pertaining to new, updated or deleted
AddressBook
objects.
Modifier and Type | Method and Description |
---|---|
void |
changedAddressBooks(Id notificationId,
IdList addressBookIds)
The callback for notification of updated address books.
|
void |
changedChildOfAddressBooks(Id notificationId,
IdList addressBookIds)
The callback for notifications of changes to children of address books
hierarchy nodes.
|
void |
deletedAddressBooks(Id notificationId,
IdList addressBookIds)
the callback for notification of deleted address books.
|
void |
newAddressBooks(Id notificationId,
IdList addressBookIds)
The callback for notifications of new address books.
|
down, up
void newAddressBooks(Id notificationId, IdList addressBookIds)
notificationId
- the notification Id
addressBookIds
- the Ids
of the new
AddressBooks
mandatory
- This method must be implemented. void changedAddressBooks(Id notificationId, IdList addressBookIds)
notificationId
- the notification Id
addressBookIds
- the Ids
of the updated
AddressBooks
mandatory
- This method must be implemented. void deletedAddressBooks(Id notificationId, IdList addressBookIds)
notificationId
- the notification Id
addressBookIds
- the Ids
of the registered
AddressBooks
mandatory
- This method must be implemented. void changedChildOfAddressBooks(Id notificationId, IdList addressBookIds)
notificationId
- the notification Id
addressBookIds
- the Ids
of the Billings
whose children have changedmandatory
- This method must be implemented.