public interface ProductReceiver extends OsidReceiver
The product receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Product
objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedProducts(IdList productIds)
The callback for notification of updated products.
|
void |
deletedProducts(IdList productIds)
the callback for notification of deleted products.
|
void |
newProducts(IdList productIds)
The callback for notifications of new products.
|
down, upvoid newProducts(IdList productIds)
productIds - the Ids of the new Products
mandatory - This method must be implemented. void changedProducts(IdList productIds)
productIds - the Ids of the updated
Products mandatory - This method must be implemented. void deletedProducts(IdList productIds)
productIds - the Ids of the registered
Products mandatory - This method must be implemented.