public interface SyllabusReceiver extends OsidReceiver
The syllabus receiver is the consumer supplied interface for receiving notifications pertaining to new or deleted syllabi.
Modifier and Type | Method and Description |
---|---|
void |
changedSyllabi(Id notificationId,
IdList syllabusIds)
The callback for notifications of updated syllabi.
|
void |
deletedSyllabi(Id notificationId,
IdList syllabusIds)
the callback for notification of deleted syllabi.
|
void |
newSyllabi(Id notificationId,
IdList syllabusIds)
The callback for notifications of new syllabi.
|
down, up
void newSyllabi(Id notificationId, IdList syllabusIds)
notificationId
- the notification Id
syllabusIds
- the Ids
of the new syllabimandatory
- This method must be implemented. void changedSyllabi(Id notificationId, IdList syllabusIds)
notificationId
- the notification Id
syllabusIds
- the Ids
of the updated syllabimandatory
- This method must be implemented.