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 |
changedEntry(Id notificationId,
Id entryId)
The callback for notification of updated entries.
|
void |
deletedEntry(Id notificationId,
Id entryId)
the callback for notification of deleted entries.
|
void |
newEntry(Id notificationId,
Id entryId)
The callback for notifications of new entries.
|
down, upvoid newEntry(Id notificationId, Id entryId)
notificationId - the notification Id entryId - the Id of the new Entry mandatory - This method must be implemented. void changedEntry(Id notificationId, Id entryId)
notificationId - the notification Id entryId - the Id of the updated Entry
mandatory - This method must be implemented.