public interface CommissionReceiver extends OsidReceiver
The commission receiver is the consumer supplied interface for
receiving notifications pertaining to new, updated or deleted
Commission objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedCommissions(IdList commissionIds)
The callback for notification of updated commissions.
|
void |
deletedCommissions(IdList commissionIds)
The callback for notification of deleted commissions.
|
void |
newCommissions(IdList commissionIds)
The callback for notifications of new commissions.
|
down, upvoid newCommissions(IdList commissionIds)
commissionIds - the Ids of the new
Commissions mandatory - This method must be implemented. void changedCommissions(IdList commissionIds)
commissionIds - the Ids of the updated
Commissions mandatory - This method must be implemented. void deletedCommissions(IdList commissionIds)
commissionIds - the Ids of the deleted
Commissions mandatory - This method must be implemented.