public interface ProgramOfferingReceiver extends OsidReceiver
The program offering receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted program offerings.
| Modifier and Type | Method and Description |
|---|---|
void |
changedProgramOfferings(Id notificationId,
IdList programOfferingIds)
The callback for notification of updated program offerings.
|
void |
deletedProgramOfferings(Id notificationId,
IdList programOfferingIds)
The callback for notification of deleted program offerings.
|
void |
newProgramOfferings(Id notificationId,
IdList programOfferingIds)
The callback for notifications of new program offerings.
|
down, upvoid newProgramOfferings(Id notificationId, IdList programOfferingIds)
notificationId - the notification Id programOfferingIds - the Ids of the new
ProgramOfferings mandatory - This method must be implemented. void changedProgramOfferings(Id notificationId, IdList programOfferingIds)
notificationId - the notification Id programOfferingIds - the Ids of the updated
ProgramOfferings mandatory - This method must be implemented. void deletedProgramOfferings(Id notificationId, IdList programOfferingIds)
notificationId - the notification Id programOfferingIds - the Ids of the deleted
ProgramOfferings mandatory - This method must be implemented.