public interface BookReceiver extends OsidReceiver
The book receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Book
objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedBooks(Id notificationId,
IdList bookIds)
The callback for notification of updated books.
|
void |
changedChildOfBooks(Id notificationId,
IdList bookIds)
The callback for notifications of changes to children of book
hierarchy nodes.
|
void |
deletedBooks(Id notificationId,
IdList bookIds)
the callback for notification of deleted books.
|
void |
newBooks(Id notificationId,
IdList bookIds)
The callback for notifications of new books.
|
down, upvoid newBooks(Id notificationId, IdList bookIds)
notificationId - the notification Id bookIds - the Ids of the new Books mandatory - This method must be implemented. void changedBooks(Id notificationId, IdList bookIds)
notificationId - the notification Id bookIds - the Ids of the updated Books
mandatory - This method must be implemented. void deletedBooks(Id notificationId, IdList bookIds)
notificationId - the notification Id bookIds - the Ids of the registered Books
mandatory - This method must be implemented. void changedChildOfBooks(Id notificationId, IdList bookIds)
notificationId - the notification Id bookIds - the Ids of the Books
whose children have changedmandatory - This method must be implemented.