public interface CourseCatalogReceiver extends OsidReceiver
The course catalog receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted CourseCatalog objects.
Modifier and Type | Method and Description |
---|---|
void |
changedChildOfCourseCatalogs(Id notificationId,
IdList courseCatalogIds)
The callback for notifications of changes to children of course
catalog hierarchy nodes.
|
void |
changedCourseCatalogs(Id notificationId,
IdList courseCatalogIds)
The callback for notification of updated course catalogs.
|
void |
deletedCourseCatalogs(Id notificationId,
IdList courseCatalogIds)
The callback for notification of deleted course catalogs.
|
void |
newCourseCatalog(Id notificationId,
IdList courseCatalogIds)
The callback for notifications of new course catalogs.
|
down, up
void newCourseCatalog(Id notificationId, IdList courseCatalogIds)
notificationId
- the notification Id
courseCatalogIds
- the Ids
of the new
CourseCatalogs
mandatory
- This method must be implemented. void changedCourseCatalogs(Id notificationId, IdList courseCatalogIds)
notificationId
- the notification Id
courseCatalogIds
- the Ids
of the updated
CourseCatalogs
mandatory
- This method must be implemented. void deletedCourseCatalogs(Id notificationId, IdList courseCatalogIds)
notificationId
- the notification Id
courseCatalogIds
- the Ids
of the deleted
CourseCatalogs
mandatory
- This method must be implemented. void changedChildOfCourseCatalogs(Id notificationId, IdList courseCatalogIds)
notificationId
- the notification Id
courseCatalogIds
- the Ids
of the
CourseCatalogs
whose children have changedmandatory
- This method must be implemented.