public interface CourseEntryReceiver extends OsidReceiver
The course entry receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted course entries.
| Modifier and Type | Method and Description |
|---|---|
void |
changedCourseEntries(Id notificationId,
IdList courseEntryIds)
The callback for notification of updated course entries.
|
void |
deletedCourseEntries(Id notificationId,
IdList courseEntryIds)
the callback for notification of deleted course entries.
|
void |
newCourseEntries(Id notificationId,
IdList courseEntryIds)
The callback for notifications of new course entries.
|
down, upvoid newCourseEntries(Id notificationId, IdList courseEntryIds)
notificationId - the notification IdcourseEntryIds - the Ids of the new
CourseEntries mandatory - This method must be implemented. void changedCourseEntries(Id notificationId, IdList courseEntryIds)
notificationId - the notification Id courseEntryIds - the Ids of the updated
CourseEntries mandatory - This method must be implemented. void deletedCourseEntries(Id notificationId, IdList courseEntryIds)
notificationId - the notification IdcourseEntryIds - the Ids of the deleted
CourseEntries mandatory - This method must be implemented.