public interface JournalReceiver extends OsidReceiver
The journal receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Journal
objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedChildOfJournals(Id notificationId,
IdList journalIds)
The callback for notifications of changes to children of journal
hierarchy nodes.
|
void |
changedJournals(Id notificationId,
IdList journalIds)
The callback for notification of updated journals.
|
void |
deletedJournals(Id notificationId,
IdList journalIds)
the callback for notification of deleted journals.
|
void |
newJournals(Id notificationId,
IdList journalIds)
The callback for notifications of new journals.
|
down, upvoid newJournals(Id notificationId, IdList journalIds)
notificationId - the notification Id journalIds - the Ids of the new Journals
mandatory - This method must be implemented. void changedJournals(Id notificationId, IdList journalIds)
notificationId - the notification Id journalIds - the Ids of the updated
Journals mandatory - This method must be implemented. void deletedJournals(Id notificationId, IdList journalIds)
notificationId - the notification Id journalIds - the Ids of the registered
Journals mandatory - This method must be implemented. void changedChildOfJournals(Id notificationId, IdList journalIds)
notificationId - the notification Id journalIds - the Ids of the Journals
whose children have changedmandatory - This method must be implemented.