Interface | osid.learning.ObjectiveHierarchyDesignSession | ||
---|---|---|---|
Implements | osid.OsidSession | ||
Description |
This session defines methods for managing a hierarchy of
| ||
Method | getObjectiveHierarchyId | ||
Description |
Gets the hierarchy | ||
Return | osid.id.Id | the hierarchy Id associated with this session | |
Compliance | mandatory | This method must be implemented. | |
Method | getObjectiveHierarchy | ||
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 | canModifyObjectiveHierarchy | ||
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 | addRootObjective | ||
Description |
Adds a root objective. | ||
Parameters | osid.id.Id | objectiveId | the Id of an objective |
Errors | ALREADY_EXISTS | objectiveId is already in hierarchy | |
NOT_FOUND | objectiveId not found | ||
NULL_ARGUMENT | objectiveId is null | ||
OPERATION_FAILED | unable to complete request | ||
PERMISSION_DENIED | authorization failure | ||
Compliance | mandatory | This method must be implemented. | |
Method | removeRootObjective | ||
Description |
Removes a root objective. | ||
Parameters | osid.id.Id | objectiveId | the Id of an objective |
Errors | NOT_FOUND | objectiveId not found | |
NULL_ARGUMENT | objectiveId is null | ||
OPERATION_FAILED | unable to complete request | ||
PERMISSION_DENIED | authorization failure | ||
Compliance | mandatory | This method must be implemented. | |
Method | addChildObjective | ||
Description |
Adds a child to an objective. | ||
Parameters | osid.id.Id | objectiveId | the Id of an objective |
osid.id.Id | childId | the Id of the new child | |
Errors | ALREADY_EXISTS | objectiveId is already a parent of childId | |
NOT_FOUND | objectiveId or childId not found | ||
NULL_ARGUMENT | objectiveId or childId is null | ||
OPERATION_FAILED | unable to complete request | ||
PERMISSION_DENIED | authorization failure | ||
Compliance | mandatory | This method must be implemented. | |
Method | removeChildObjective | ||
Description |
Removes a child from an objective. | ||
Parameters | osid.id.Id | objectiveId | the Id of an objective |
osid.id.Id | childId | the Id of the new child | |
Errors | NOT_FOUND | objectiveId not a parent of childId | |
NULL_ARGUMENT | objectiveId or childId is null | ||
OPERATION_FAILED | unable to complete request | ||
PERMISSION_DENIED | authorization failure | ||
Compliance | mandatory | This method must be implemented. | |
Method | removeChildObjectives | ||
Description |
Removes all children from an objective. | ||
Parameters | osid.id.Id | objectiveId | the Id of an objective |
Errors | NOT_FOUND | objectiveId not found | |
NULL_ARGUMENT | objectiveId is null | ||
OPERATION_FAILED | unable to complete request | ||
PERMISSION_DENIED | authorization failure | ||
Compliance | mandatory | This method must be implemented. |