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 |
changedItem(Id itemId)
The callback for notification of updated items.
|
void |
deletedItem(Id itemId)
The callback for notification of deleted items.
|
void |
newItem(Id itemId)
The callback for notifications of new items.
|
down, up
void newItem(Id itemId)
itemId
- the Id of the new Item
mandatory
- This method must be implemented. void changedItem(Id itemId)
itemId
- the Id of the updated Item
mandatory
- This method must be implemented. void deletedItem(Id itemId)
itemId
- the Id of the deleted Item
mandatory
- This method must be implemented.