Interface ProgramOfferingReceiver
- All Superinterfaces:
OsidReceiver
The program offering receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted program offerings.
Like all OsidReceivers, notifications are delivered to
ProgramOfferingReceiver serially and a receiver method is not invoked
again until any previous invocation has returned.
-
Method Summary
Modifier and TypeMethodDescriptionvoidchangedProgramOfferings(Id notificationId, IdList programOfferingIds) The callback for notification of updated program offerings.voiddeletedProgramOfferings(Id notificationId, IdList programOfferingIds) The callback for notification of deleted program offerings.voidnewProgramOfferings(Id notificationId, IdList programOfferingIds) The callback for notifications of new program offerings.Methods inherited from interface OsidReceiver
down, up
-
Method Details
-
newProgramOfferings
-
changedProgramOfferings
The callback for notification of updated program offerings.- Parameters:
notificationId- the notificationIdprogramOfferingIds- theIdsof the updatedProgramOfferings- Compliance:
mandatory- This method must be implemented.
-
deletedProgramOfferings
The callback for notification of deleted program offerings.- Parameters:
notificationId- the notificationIdprogramOfferingIds- theIdsof the deletedProgramOfferings- Compliance:
mandatory- This method must be implemented.
-