OSID Logo
OSID Specifications
course package
Version 3.1.0
Interfaceosid.course.TermCourseCatalogAssignmentSession
Implementsosid.OsidSession
Used Byosid.course.CourseManager
osid.course.CourseProxyManager
Description

This session provides methods to re-assign Terms to CourseCatalogs. A Term may appear in multiple CourseCatalogs and removing the last reference to a Term is the equivalent of deleting it. Each CourseCatalog may have its own authorizations governing who is allowed to operate on it.

Adding a reference of a Term to another CourseCatalog is not a copy operation (eg: does not change its Id).

MethodcanAssignTerms
Description

Tests if this user can alter term/course catalog mappings. A return of true does not guarantee successful authorization. A return of false indicates that it is known mapping methods in this session will result in a PERMISSION_DENIED. This is intended as a hint to an application that may opt not to offer assignment operations to unauthorized users.

Returnboolean false if mapping is not authorized, true otherwise
Compliancemandatory This method must be implemented.
MethodcanAssignTermsToCourseCatalog
Description

Tests if this user can alter term/course catalog mappings. A return of true does not guarantee successful authorization. A return of false indicates that it is known mapping methods in this session will result in a PERMISSION_DENIED. This is intended as a hint to an application that may opt not to offer lookup operations to unauthorized users.

Parametersosid.id.IdcourseCatalogId the Id of the CourseCatalog
Returnboolean false if mapping is not authorized, true otherwise
ErrorsNULL_ARGUMENT courseCatalogId is null
Compliancemandatory This method must be implemented.
MethodgetAssignableCourseCatalogIds
Description

Gets a list of course catalogs including and under the given course catalog node in which any term can be assigned.

Parametersosid.id.IdcourseCatalogId the Id of the CourseCatalog
Returnosid.id.IdList list of assignable course catalog Ids
ErrorsNULL_ARGUMENT courseCatalogId is null
OPERATION_FAILED unable to complete request
Compliancemandatory This method must be implemented.
MethodgetAssignableCourseCatalogIdsForTerm
Description

Gets a list of course catalogs including and under the given course catalog node in which a specific term can be assigned.

Parametersosid.id.IdcourseCatalogId the Id of the CourseCatalog
osid.id.IdtermId the Id of the Term
Returnosid.id.IdList list of assignable course catalog Ids
ErrorsNULL_ARGUMENT courseCatalogId or termId is null
OPERATION_FAILED unable to complete request
Compliancemandatory This method must be implemented.
MethodassignTermToCatalog
Description

Adds an existing Term to a CourseCatalog.

Parametersosid.id.IdtermId the Id of the Term
osid.id.IdcourseCatalogId the Id of the CourseCatalog
ErrorsALREADY_EXISTS termId is already assigned to courseCatalogId
NOT_FOUND termId or courseCatalogId not found
NULL_ARGUMENT termId or courseCatalogId is null
OPERATION_FAILED unable to complete request
PERMISSION_DENIED authorization failure
Compliancemandatory This method must be implemented.
MethodunassignTermFromCatalog
Description

Removes a Term from a CourseCatalog.

Parametersosid.id.IdtermId the Id of the Term
osid.id.IdcourseCatalogId the Id of the CourseCatalog
ErrorsNOT_FOUND termId or courseCatalogId not found or termId not assigned to courseCatalogId
NULL_ARGUMENT termId or courseCatalogId is null
OPERATION_FAILED unable to complete request
PERMISSION_DENIED authorization failure
Compliancemandatory This method must be implemented.
MethodreassignTermToCourseCatalog
Description

Moves a Term from one CourseCatalog to another. Mappings to other CourseCatalogs are unaffected.

Parametersosid.id.IdtermId the Id of the Term
osid.id.IdfromCourseCatalogId the Id of the current CourseCatalog
osid.id.IdtoCourseCatalogId the Id of the destination CourseCatalog
ErrorsALREADY_EXISTS termId already assigned to toCourseCatalogId
NOT_FOUND termId, fromCourseCatalogId, or toCourseCatalogId not found or termId not mapped to fromCourseCatalogId
NULL_ARGUMENT termId, fromCourseCatalogId, or toCourseCatalogId is null
OPERATION_FAILED unable to complete request
PERMISSION_DENIED authorization failure
Compliancemandatory This method must be implemented.