public interface CatalogEnablerReceiver extends OsidReceiver
The catalog enabler receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted catalog enablers.
| Modifier and Type | Method and Description |
|---|---|
void |
changedCatalogEnabler(Id notificationId,
Id catalogEnablerId)
The callback for notification of updated catalog enablers.
|
void |
deletedCatalogEnabler(Id notificationId,
Id catalogEnablerId)
The callback for notification of deleted catalog enablers.
|
void |
newCatalogEnabler(Id notificationId,
Id catalogEnablerId)
The callback for notifications of new catalog enablers.
|
down, upvoid newCatalogEnabler(Id notificationId, Id catalogEnablerId)
notificationId - the notification Id catalogEnablerId - the Id of the new
CatalogEnabler mandatory - This method must be implemented. void changedCatalogEnabler(Id notificationId, Id catalogEnablerId)
notificationId - the notification Id catalogEnablerId - the Id of the updated
CatalogEnabler mandatory - This method must be implemented. void deletedCatalogEnabler(Id notificationId, Id catalogEnablerId)
notificationId - the notification Id catalogEnablerId - the Id of the deleted
CatalogEnabler mandatory - This method must be implemented.