Interface CatalogReceiver
- All Superinterfaces:
OsidReceiver
The catalog receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Catalog
objects.
Like all OsidReceivers, notifications are delivered to
CatalogReceiver serially and a receiver method is not invoked again until
any previous invocation has returned.
-
Method Summary
Modifier and TypeMethodDescriptionvoidchangedCatalogs(Id notificationId, IdList catalogIds) The callback for notification of updated catalogs.voidchangedChildOfCatalogs(Id notificationId, IdList catalogIds) The callback for notifications of changes to children of catalog hierarchy nodes.voiddeletedCatalogs(Id notificationId, IdList catalogIds) the callback for notification of deleted catalogs.voidnewCatalogs(Id notificationId, IdList catalogIds) The callback for notifications of new catalogs.Methods inherited from interface OsidReceiver
down, up
-
Method Details
-
newCatalogs
-
changedCatalogs
-
deletedCatalogs
-
changedChildOfCatalogs
The callback for notifications of changes to children of catalog hierarchy nodes.- Parameters:
notificationId- the notificationIdcatalogIds- theIdsof theCatalogswhose children have changed- Compliance:
mandatory- This method must be implemented.
-