public interface CourseReceiver extends OsidReceiver
The course receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Course
objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedCourses(Id notificationId,
IdList courseIds)
The callback for notification of updated courses.
|
void |
deletedCourses(Id notificationId,
IdList courseIds)
the callback for notification of deleted courses.
|
void |
newCourses(Id notificationId,
IdList courseIds)
The callback for notifications of new courses.
|
down, upvoid newCourses(Id notificationId, IdList courseIds)
notificationId - the notification Id courseIds - the Ids of the new Courses
mandatory - This method must be implemented. void changedCourses(Id notificationId, IdList courseIds)
notificationId - the notification Id courseIds - the Ids of the updated Courses
mandatory - This method must be implemented.