public interface BillingReceiver extends OsidReceiver
The billing receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Billing
objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedBillings(Id notificationId,
IdList billingIds)
The callback for notification of updated billings.
|
void |
changedChildOfBillings(Id notificationId,
IdList billingIds)
The callback for notifications of changes to children of billing
hierarchy nodes.
|
void |
deletedBillings(Id notificationId,
IdList billingIds)
the callback for notification of deleted billings.
|
void |
newBillings(Id notificationId,
IdList billingIds)
The callback for notifications of new billings.
|
down, upvoid newBillings(Id notificationId, IdList billingIds)
notificationId - the notification Id billingIds - the Ids of the new Billings
mandatory - This method must be implemented. void changedBillings(Id notificationId, IdList billingIds)
notificationId - the notification Id billingIds - the Ids of the updated
Billings mandatory - This method must be implemented. void deletedBillings(Id notificationId, IdList billingIds)
notificationId - the notification Id billingIds - the Ids of the registered
Billings mandatory - This method must be implemented. void changedChildOfBillings(Id notificationId, IdList billingIds)
notificationId - the notification Id billingIds - the Ids of the Billings
whose children have changedmandatory - This method must be implemented.