public interface PriceEnablerReceiver extends OsidReceiver
The price enabler receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted price enablers.
| Modifier and Type | Method and Description |
|---|---|
void |
changedPriceEnablers(Id notificationId,
IdList priceEnablerIds)
The callback for notification of updated price enablers.
|
void |
deletedPriceEnablers(Id notificationId,
IdList priceEnablerIds)
The callback for notification of deleted price enablers.
|
void |
newPriceEnablers(Id notificationId,
IdList priceEnablerIds)
The callback for notifications of new price enablers.
|
down, upvoid newPriceEnablers(Id notificationId, IdList priceEnablerIds)
notificationId - the notification Id priceEnablerIds - the Ids of the new
PriceEnablers mandatory - This method must be implemented. void changedPriceEnablers(Id notificationId, IdList priceEnablerIds)
notificationId - the notification Id priceEnablerIds - the Ids of the updated
PriceEnablers mandatory - This method must be implemented. void deletedPriceEnablers(Id notificationId, IdList priceEnablerIds)
notificationId - the notification Id priceEnablerIds - the Ids of the deleted
PriceEnablers mandatory - This method must be implemented.