Interface | osid.inquiry.InquestHierarchyDesignSession | ||
---|---|---|---|
Implements | osid.OsidSession | ||
Description |
This session defines methods for managing a hierarchy of
| ||
Method | getInquestHierarchyId | ||
Description |
Gets the hierarchy | ||
Return | osid.id.Id | the hierarchy Id associated with this session | |
Compliance | mandatory | This method must be implemented. | |
Method | getInquestHierarchy | ||
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 | canModifyInquestHierarchy | ||
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 | addRootInquest | ||
Description |
Adds a root inquest. | ||
Parameters | osid.id.Id | inquestId | the Id of an inquest |
Errors | ALREADY_EXISTS | inquestId is already in hierarchy | |
NOT_FOUND | inquestId not found | ||
NULL_ARGUMENT | inquestId is null | ||
OPERATION_FAILED | unable to complete request | ||
PERMISSION_DENIED | authorization failure | ||
Compliance | mandatory | This method must be implemented. | |
Method | removeRootInquest | ||
Description |
Removes a root inquest. | ||
Parameters | osid.id.Id | inquestId | the Id of an inquest |
Errors | NOT_FOUND | inquestId is not a root | |
NULL_ARGUMENT | inquestId is null | ||
OPERATION_FAILED | unable to complete request | ||
PERMISSION_DENIED | authorization failure | ||
Compliance | mandatory | This method must be implemented. | |
Method | addChildInquest | ||
Description |
Adds a child to an inquest. | ||
Parameters | osid.id.Id | inquestId | the Id of an inquest |
osid.id.Id | childId | the Id of the new child | |
Errors | ALREADY_EXISTS | inquestId is already a parent of childId | |
NOT_FOUND | inquestId or childId not found | ||
NULL_ARGUMENT | inquestId or childId is null | ||
OPERATION_FAILED | unable to complete request | ||
PERMISSION_DENIED | authorization failure | ||
Compliance | mandatory | This method must be implemented. | |
Method | removeChildInquest | ||
Description |
Removes a child from an inquest. | ||
Parameters | osid.id.Id | inquestId | the Id of an inquest |
osid.id.Id | childId | the Id of the new child | |
Errors | NOT_FOUND | inquestId is not parent of childId | |
NULL_ARGUMENT | inquestId or childId is null | ||
OPERATION_FAILED | unable to complete request | ||
PERMISSION_DENIED | authorization failure | ||
Compliance | mandatory | This method must be implemented. | |
Method | removeChildInquests | ||
Description |
Removes all children from an inquest. | ||
Parameters | osid.id.Id | inquestId | the Id of an inquest |
Errors | NOT_FOUND | inquestId is not found | |
NULL_ARGUMENT | inquestId is null | ||
OPERATION_FAILED | unable to complete request | ||
PERMISSION_DENIED | authorization failure | ||
Compliance | mandatory | This method must be implemented. |