Interface | osid.authorization.QualifierHierarchyDesignSession | ||
---|---|---|---|
Implements | osid.OsidSession | ||
Description |
This session defines methods for managing a hierarchy of
| ||
Method | getQualifierHierarchyId | ||
Description |
Gets the hierarchy | ||
Return | osid.id.Id | the hierarchy Id associated with this session | |
Compliance | mandatory | This method must be implemented. | |
Method | getQualifierHierarchy | ||
Description |
Gets the hierarchy associated with this session. | ||
Return | osid.hierarchy.Hierarchy | the hierarchy associated with this session | |
Errors | OPERATION_FAILED | unable to complete request | |
PERMISSION_DENIED | authorization failure | ||
Compliance | mandatory | This method must be implemented. | |
Method | canModifyQualifierHierarchy | ||
Description |
Tests if this user can change the hierarchy. A return
of true does not guarantee successful authorization. A
return of false indicates that it is known performing any
update will result in a | ||
Return | boolean | false if changing this hierarchy is not authorized,
true otherwise | |
Compliance | mandatory | This method must be implemented. | |
Method | addRootQualifier | ||
Description |
Adds a root qualifier. | ||
Parameters | osid.id.Id | qualifierId | the Id of a qualifier |
Errors | ALREADY_EXISTS | qualifierId is already in hierarchy | |
NOT_FOUND | qualifierId not found | ||
NULL_ARGUMENT | qualifierId is null | ||
OPERATION_FAILED | unable to complete request | ||
PERMISSION_DENIED | authorization failure | ||
Compliance | mandatory | This method must be implemented. | |
Method | removeRootQualifier | ||
Description |
Removes a root qualifier from this hierarchy. | ||
Parameters | osid.id.Id | qualifierId | the Id of a qualifier |
Errors | NOT_FOUND | qualifierId not a parent of childId | |
NULL_ARGUMENT | qualifierId or childId is null | ||
OPERATION_FAILED | unable to complete request | ||
PERMISSION_DENIED | authorization failure | ||
Compliance | mandatory | This method must be implemented. | |
Method | addChildQualifier | ||
Description |
Adds a child to a qualifier. | ||
Parameters | osid.id.Id | qualifierId | the Id of a qualifier |
osid.id.Id | childId | the Id of the new child | |
Errors | ALREADY_EXISTS | qualifierId is already a parent of childId | |
NOT_FOUND | qualifierId or childId not found | ||
NULL_ARGUMENT | qualifierId or childId is null | ||
OPERATION_FAILED | unable to complete request | ||
PERMISSION_DENIED | authorization failure | ||
Compliance | mandatory | This method must be implemented. | |
Method | removeChildQualifier | ||
Description |
Removes a child from a qualifier. | ||
Parameters | osid.id.Id | qualifierId | the Id of a qualifier |
osid.id.Id | childId | the Id of the child | |
Errors | NOT_FOUND | qualifierId not parent of childId | |
NULL_ARGUMENT | qualifierId or childId is null | ||
OPERATION_FAILED | unable to complete request | ||
PERMISSION_DENIED | authorization failure | ||
Compliance | mandatory | This method must be implemented. | |
Method | removeChildQualifiers | ||
Description |
Removes all children from a qualifier. | ||
Parameters | osid.id.Id | qualifierId | the Id of a qualifier |
Errors | NOT_FOUND | qualifierId is not in hierarchy | |
NULL_ARGUMENT | qualifierId is null | ||
OPERATION_FAILED | unable to complete request | ||
PERMISSION_DENIED | authorization failure | ||
Compliance | mandatory | This method must be implemented. |