public interface JournalEntryReceiver extends OsidReceiver
The journal entry receiver is the consumer supplied interface for receiving notifications pertaining to new or deleted journal entries.
| Modifier and Type | Method and Description |
|---|---|
void |
changedJournalEntries(Id notificationId,
IdList journalEntryIds)
The callback for notifications of updated journal entries.
|
void |
deletedJournalEntries(Id notificationId,
IdList journalEntryIds)
the callback for notification of deleted journal entries.
|
void |
newJournalEntries(Id notificationId,
IdList journalEntryIds)
The callback for notifications of new journal entries.
|
down, upvoid newJournalEntries(Id notificationId, IdList journalEntryIds)
notificationId - the notification Id journalEntryIds - the Ids of the new journal
entriesmandatory - This method must be implemented. void changedJournalEntries(Id notificationId, IdList journalEntryIds)
notificationId - the notification Id journalEntryIds - the Ids of the updated journal
entriesmandatory - This method must be implemented. void deletedJournalEntries(Id notificationId, IdList journalEntryIds)
notificationId - the notification Id journalEntryIds - the Ids of the deleted journal
entriesmandatory - This method must be implemented.