public interface CategoryReceiver extends OsidReceiver
The category receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted category objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedCategories(Id notificationId,
IdList categoryIds)
The callback for notification of updated categories.
|
void |
deletedCategories(Id notificationId,
IdList categoryIds)
The callback for notification of deleted categories.
|
void |
newCategories(Id notificationId,
IdList categoryIds)
The callback for notifications of new categories.
|
down, upvoid newCategories(Id notificationId, IdList categoryIds)
notificationId - the notification Id categoryIds - the Id of the new Categories
mandatory - This method must be implemented. void changedCategories(Id notificationId, IdList categoryIds)
notificationId - the notification Id categoryIds - the Id of the updated
Categories mandatory - This method must be implemented.