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 |
changedCourseCatalog(Id courseCatalogId)
The callback for notification of updated course catalogs.
|
void |
deletedAncestorCourseCatalog(Id courseCatalogId,
Id ancestorId)
The callback for notifications of deleted course catalog ancestors.
|
void |
deletedCourseCatalog(Id courseCatalogId)
The callback for notification of deleted course catalogs.
|
void |
deletedDescendantCourseCatalog(Id courseCatalogId,
Id descendantId)
The callback for notifications of deleted course catalog descendants.
|
void |
newAncestorCourseCatalog(Id courseCatalogId,
Id ancestorId)
The callback for notifications of new course catalog ancestors.
|
void |
newCourseCatalog(Id courseCatalogId)
The callback for notifications of new course catalogs.
|
void |
newDescendantCourseCatalog(Id courseCatalogId,
Id descendantId)
The callback for notifications of new course catalog descendants.
|
down, upvoid newCourseCatalog(Id courseCatalogId)
courseCatalogId - the Id of the new
CourseCatalog mandatory - This method must be implemented. void newAncestorCourseCatalog(Id courseCatalogId, Id ancestorId)
courseCatalogId - the Id of the
CourseCatalog ancestorId - the Id of the new
CourseCatalog ancestormandatory - This method must be implemented. void newDescendantCourseCatalog(Id courseCatalogId, Id descendantId)
courseCatalogId - the Id of the
CourseCatalog descendantId - the Id of the new
CourseCatalog descendantmandatory - This method must be implemented. void changedCourseCatalog(Id courseCatalogId)
courseCatalogId - the Id of the updated
CourseCatalog mandatory - This method must be implemented. void deletedCourseCatalog(Id courseCatalogId)
courseCatalogId - the Id of the deleted
CourseCatalog mandatory - This method must be implemented. void deletedAncestorCourseCatalog(Id courseCatalogId, Id ancestorId)
courseCatalogId - the Id of the
CourseCatalog ancestorId - the Id of the removed
CourseCatalog ancestormandatory - This method must be implemented. void deletedDescendantCourseCatalog(Id courseCatalogId, Id descendantId)
courseCatalogId - the Id of the
CourseCatalog descendantId - the Id of the removed
CourseCatalog descendantmandatory - This method must be implemented.