public interface LessonReceiver extends OsidReceiver
The lesson receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Lesson
objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedLessons(Id notificationId,
IdList lessonIds)
The callback for notification of updated lessons.
|
void |
deletedLessons(Id notificationId,
IdList lessonIds)
the callback for notification of deleted lessons.
|
void |
newLessons(Id notificationId,
IdList lessonIds)
The callback for notifications of new lessons.
|
down, upvoid newLessons(Id notificationId, IdList lessonIds)
notificationId - the notification IdlessonIds - the Ids of the new Lessons
mandatory - This method must be implemented. void changedLessons(Id notificationId, IdList lessonIds)
notificationId - the notification Id lessonIds - the Ids of the updated Lessons
mandatory - This method must be implemented.