| Interface | osid.course.registration.request.RegistrationRequestItemCourseCatalogAssignmentSession | ||
|---|---|---|---|
| Implements | osid.OsidSession | ||
| Used By | osid.course.registration.request.RegistrationRequestManager | ||
osid.course.registration.request.RegistrationRequestProxyManager | |||
| Description |
This session provides methods to re-assign
Adding a reference of a | ||
| Method | canAssignRegistrationRequestItems | ||
| Description |
Tests if this user can alter registration request
item/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 | ||
| Return | boolean | false if mapping is not authorized, true
otherwise | |
| Compliance | mandatory | This method must be implemented. | |
| Method | canAssignRegistrationRequestItemToCourseCatalog | ||
| Description |
Tests if this user can alter registration request
item/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 | ||
| Parameters | osid.id.Id | courseCatalogId | the Id of the CourseCatalog |
| Return | boolean | false if mapping is not authorized, true
otherwise | |
| Errors | NULL_ARGUMENT | courseCatalogId is null | |
| Compliance | mandatory | This method must be implemented. | |
| Method | getAssignableCourseCatalogIds | ||
| Description |
Gets a list of course catalogs including and under the given course catalog node in which any registration request item can be assigned. | ||
| Parameters | osid.id.Id | courseCatalogId | the Id of the CourseCatalog |
| Return | osid.id.IdList | list of assignable course catalog Ids | |
| Errors | NULL_ARGUMENT | courseCatalogId is null | |
| OPERATION_FAILED | unable to complete request | ||
| Compliance | mandatory | This method must be implemented. | |
| Method | getAssignableCourseCatalogIdsForRegistrationRequestItem | ||
| Description |
Gets a list of course catalogs including and under the given course catalog node in which a specific registration request item can be assigned. | ||
| Parameters | osid.id.Id | courseCatalogId | the Id of the CourseCatalog |
osid.id.Id | registrationRequestItemId | the Id of the RegistrationRequestItem | |
| Return | osid.id.IdList | list of assignable course catalog Ids | |
| Errors | NULL_ARGUMENT | courseCatalogId or registrationRequestItemId is
null | |
| OPERATION_FAILED | unable to complete request | ||
| Compliance | mandatory | This method must be implemented. | |
| Method | assignRegistrationRequestItemToCourseCatalog | ||
| Description |
Adds an existing | ||
| Parameters | osid.id.Id | registrationRequestItemId | the Id of the RegistrationRequestItem |
osid.id.Id | courseCatalogId | the Id of the CourseCatalog | |
| Errors | ALREADY_EXISTS | registrationRequestItemId is already assigned to
courseCatalogId | |
| NOT_FOUND | registrationRequestItemId or courseCatalogId not
found | ||
| NULL_ARGUMENT | registrationRequestItemId or courseCatalogId is
null | ||
| OPERATION_FAILED | unable to complete request | ||
| PERMISSION_DENIED | authorization failure | ||
| Compliance | mandatory | This method must be implemented. | |
| Method | unassignRegistrationRequestItemFromCourseCatalog | ||
| Description |
Removes a | ||
| Parameters | osid.id.Id | registrationRequestItemId | the Id of the RegistrationRequestItem |
osid.id.Id | courseCatalogId | the Id of the CourseCatalog | |
| Errors | NOT_FOUND | registrationRequestItemId or courseCatalogId not
found or registrationRequestItemId not assigned to
courseCatalogId | |
| NULL_ARGUMENT | registrationRequestItemId or courseCatalogId is
null | ||
| OPERATION_FAILED | unable to complete request | ||
| PERMISSION_DENIED | authorization failure | ||
| Compliance | mandatory | This method must be implemented. | |
| Method | reassignRegistrationRequestItemToCourseCatalog | ||
| Description |
Moves a | ||
| Parameters | osid.id.Id | registrationRequestItemId | the Id of the RegistrationRequestItem |
osid.id.Id | fromCourseCatalogId | the Id of the current CourseCatalog | |
osid.id.Id | toCourseCatalogId | the Id of the destination CourseCatalog | |
| Errors | ALREADY_EXISTS | registrationRequestItemId already assigned to
tocourseCatalogId | |
| NOT_FOUND | registrationRequestItemId, fromCourseCatalogId , or
toCourseCatalogeId not found or
registrationRequestItemId not mapped to
fromCourseCatalogId | ||
| NULL_ARGUMENT | registrationRequestItemId, fromCourseCatalogId , or
toCourseCatalogId is null | ||
| OPERATION_FAILED | unable to complete request | ||
| PERMISSION_DENIED | authorization failure | ||
| Compliance | mandatory | This method must be implemented. | |