Interface CourseRegistrationReceiver
- All Superinterfaces:
OsidReceiver
The course registration receiver is the consumer supplied interface for
receiving notifications pertaining to new, updated or deleted
CourseRegistration objects.
-
Method Summary
Modifier and TypeMethodDescriptionvoidchangedCourseRegistrations(Id notificationId, IdList courseRegistrationIds) The callback for notification of updated course registrations.voiddeletedCourseRegistrations(Id notificationId, IdList courseRegistrationIds) The callback for notification of deleted course registrations.voidnewCourseRegistrations(Id notificationId, IdList courseRegistrationIds) The callback for notifications of new course registrations.Methods inherited from interface OsidReceiver
down, up
-
Method Details
-
newCourseRegistrations
The callback for notifications of new course registrations.- Parameters:
notificationId- the notificationIdcourseRegistrationIds- theIdof the newCourseRegistrations- Compliance:
mandatory- This method must be implemented.
-
changedCourseRegistrations
The callback for notification of updated course registrations.- Parameters:
notificationId- the notificationIdcourseRegistrationIds- theIdof the updatedCourseRegistrations- Compliance:
mandatory- This method must be implemented.
-
deletedCourseRegistrations
The callback for notification of deleted course registrations.- Parameters:
notificationId- the notificationIdcourseRegistrationIds- theIdof the deletedCourseRegistrations- Compliance:
mandatory- This method must be implemented.
-