Interface CommissionEnablerReceiver
- All Superinterfaces:
OsidReceiver
The commission enabler receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted commission enablers.
-
Method Summary
Modifier and TypeMethodDescriptionvoidchangedCommissionEnablers(Id notificationId, IdList commissionEnablerIds) The callback for notification of updated commission enablers.voiddeletedCommissionEnablers(Id notificationId, IdList commissionEnablerIds) The callback for notification of deleted commission enablers.voidnewCommissionEnablers(Id notificationId, IdList commissionEnablerIds) The callback for notifications of new commission enablers.Methods inherited from interface OsidReceiver
down, up
-
Method Details
-
newCommissionEnablers
The callback for notifications of new commission enablers.- Parameters:
notificationId- the notification IdcommissionEnablerIds- theIdsof the newCommissionEnablers- Compliance:
mandatory- This method must be implemented.
-
changedCommissionEnablers
The callback for notification of updated commission enablers.- Parameters:
notificationId- the notification IdcommissionEnablerIds- theIdsof the updatedCommissionEnablers- Compliance:
mandatory- This method must be implemented.
-
deletedCommissionEnablers
The callback for notification of deleted commission enablers.- Parameters:
notificationId- the notification IdcommissionEnablerIds- theIdsof the deletedCommissionEnablers- Compliance:
mandatory- This method must be implemented.
-