public interface InventoryReceiver extends OsidReceiver
The inventory receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Inventory
objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedInventories(IdList inventoryIds)
The callback for notification of updated inventories.
|
void |
deletedInventories(IdList inventoryIds)
the callback for notification of deleted inventories.
|
void |
newInventories(IdList inventoryIds)
The callback for notifications of new inventories.
|
down, upvoid newInventories(IdList inventoryIds)
inventoryIds - the Id of the new
Inventories mandatory - This method must be implemented. void changedInventories(IdList inventoryIds)
inventoryIds - the Id of the updated
Inventories mandatory - This method must be implemented. void deletedInventories(IdList inventoryIds)
inventoryIds - the Id of the deleted
Inventories mandatory - This method must be implemented.