public interface SubscriptionEnablerReceiver extends OsidReceiver
The subscription enabler receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted subscription enablers.
| Modifier and Type | Method and Description |
|---|---|
void |
changedSubscriptionEnablers(Id notificationId,
IdList subscriptionEnablerIds)
The callback for notification of updated subscription enablers.
|
void |
deletedSubscriptionEnablers(Id notificationId,
IdList subscriptionEnablerIds)
The callback for notification of deleted subscription enablers.
|
void |
newSubscriptionEnablers(Id notificationId,
IdList subscriptionEnablerIds)
The callback for notifications of new subscription enablers.
|
down, upvoid newSubscriptionEnablers(Id notificationId, IdList subscriptionEnablerIds)
notificationId - the notification Id subscriptionEnablerIds - the Ids of the new
SubscriptionEnablers mandatory - This method must be implemented. void changedSubscriptionEnablers(Id notificationId, IdList subscriptionEnablerIds)
notificationId - the notification Id subscriptionEnablerIds - the Ids of the updated
SubscriptionEnablers mandatory - This method must be implemented. void deletedSubscriptionEnablers(Id notificationId, IdList subscriptionEnablerIds)
notificationId - the notification Id subscriptionEnablerIds - the Ids of the deleted
SubscriptionEnablers mandatory - This method must be implemented.