public interface EntryReceiver extends OsidReceiver
The entry receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Entry
objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedEntries(Id notificationId,
IdList entryIds)
The callback for notification of updated entries.
|
void |
deletedEntries(Id notificationId,
IdList entryIds)
the callback for notification of deleted entries.
|
void |
newEntries(Id notificationId,
IdList entryIds)
The callback for notifications of new entries.
|
down, upvoid newEntries(Id notificationId, IdList entryIds)
notificationId - the notification Id entryIds - the Id of the new Entries
mandatory - This method must be implemented. void changedEntries(Id notificationId, IdList entryIds)
notificationId - the notification Id entryIds - the Id of the updated Entries
mandatory - This method must be implemented.