public interface ItemReceiver extends OsidReceiver
The item receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Items.
Modifier and Type | Method and Description |
---|---|
void |
changedItems(Id notificationId,
IdList itemIds)
The callback for notification of updated items.
|
void |
deletedItems(Id notificationId,
IdList itemIds)
The callback for notification of deleted items.
|
void |
newItems(Id notificationId,
IdList itemIds)
The callback for notifications of new items.
|
down, up
void newItems(Id notificationId, IdList itemIds)
notificationId
- the notification Id
itemIds
- the Id of the new Items
mandatory
- This method must be implemented. void changedItems(Id notificationId, IdList itemIds)
notificationId
- the notification Id
itemIds
- the Id of the updated Items
mandatory
- This method must be implemented.