public interface CourseOfferingReceiver extends OsidReceiver
The course offering receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted course offering objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedCourseOfferings(Id notificationId,
IdList courseOfferingIds)
The callback for notification of updated course offerings.
|
void |
deletedCourseOfferings(Id notificationId,
IdList courseOfferingIds)
The callback for notification of deleted course offerings.
|
void |
newCourseOfferings(Id notificationId,
IdList courseOfferingIds)
The callback for notifications of new course offerings.
|
down, upvoid newCourseOfferings(Id notificationId, IdList courseOfferingIds)
notificationId - the notification Id courseOfferingIds - the Ids of the new
CourseOfferings mandatory - This method must be implemented. void changedCourseOfferings(Id notificationId, IdList courseOfferingIds)
notificationId - the notification Id courseOfferingIds - the Ids of the updated
CourseOfferings mandatory - This method must be implemented. void deletedCourseOfferings(Id notificationId, IdList courseOfferingIds)
notificationId - the notification Id courseOfferingIds - the Ids of the deleted
CourseOfferings mandatory - This method must be implemented.