public interface OfferingReceiver extends OsidReceiver
The offering receiver is the consumer supplied interface for receiving notifications pertaining to new or deleted offerings.
| Modifier and Type | Method and Description |
|---|---|
void |
changedOfferings(IdList offeringIds)
The callback for notifications of updated offerings.
|
void |
deletedOfferings(IdList offeringIds)
the callback for notification of deleted offerings.
|
void |
newOfferings(IdList offeringIds)
The callback for notifications of new offerings.
|
down, upvoid newOfferings(IdList offeringIds)
offeringIds - the Ids of the new offeringsmandatory - This method must be implemented. void changedOfferings(IdList offeringIds)
offeringIds - the Ids of the updated offeringsmandatory - This method must be implemented. void deletedOfferings(IdList offeringIds)
offeringIds - the Ids of the deleted offeringsmandatory - This method must be implemented.