public interface CommissionEnablerReceiver extends OsidReceiver
The commission enabler receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted commission enablers.
Modifier and Type | Method and Description |
---|---|
void |
changedCommissionEnablers(IdList commissionEnablerIds)
The callback for notification of updated commission enablers.
|
void |
deletedCommissionEnablers(IdList commissionEnablerIds)
The callback for notification of deleted commission enablers.
|
void |
newCommissionEnablers(IdList commissionEnablerIds)
The callback for notifications of new commission enablers.
|
down, up
void newCommissionEnablers(IdList commissionEnablerIds)
commissionEnablerIds
- the Ids
of the new
CommissionEnablers
mandatory
- This method must be implemented. void changedCommissionEnablers(IdList commissionEnablerIds)
commissionEnablerIds
- the Ids
of the updated
CommissionEnablers
mandatory
- This method must be implemented. void deletedCommissionEnablers(IdList commissionEnablerIds)
commissionEnablerIds
- the Ids
of the deleted
CommissionEnablers
mandatory
- This method must be implemented.