Interface SubscriptionEnablerReceiver
- All Superinterfaces:
OsidReceiver
The subscription enabler receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted subscription enablers.
-
Method Summary
Modifier and TypeMethodDescriptionvoidchangedSubscriptionEnablers(Id notificationId, IdList subscriptionEnablerIds) The callback for notification of updated subscription enablers.voiddeletedSubscriptionEnablers(Id notificationId, IdList subscriptionEnablerIds) The callback for notification of deleted subscription enablers.voidnewSubscriptionEnablers(Id notificationId, IdList subscriptionEnablerIds) The callback for notifications of new subscription enablers.Methods inherited from interface OsidReceiver
down, up
-
Method Details
-
newSubscriptionEnablers
The callback for notifications of new subscription enablers.- Parameters:
notificationId- the notificationIdsubscriptionEnablerIds- theIdsof the newSubscriptionEnablers- Compliance:
mandatory- This method must be implemented.
-
changedSubscriptionEnablers
The callback for notification of updated subscription enablers.- Parameters:
notificationId- the notificationIdsubscriptionEnablerIds- theIdsof the updatedSubscriptionEnablers- Compliance:
mandatory- This method must be implemented.
-
deletedSubscriptionEnablers
The callback for notification of deleted subscription enablers.- Parameters:
notificationId- the notificationIdsubscriptionEnablerIds- theIdsof the deletedSubscriptionEnablers- Compliance:
mandatory- This method must be implemented.
-