| Interface | osid.checklist.ChecklistHierarchyDesignSession | ||
|---|---|---|---|
| Implements | osid.OsidSession | ||
| Description |
This session manages a hierarchy of checklists. Checklists
may be organized into a hierarchy for organizing or
federating. A parent | ||
| Method | getChecklistHierarchyId | ||
| Description |
Gets the hierarchy | ||
| Return | osid.id.Id | the hierarchy Id associated with this session | |
| Compliance | mandatory | This method must be implemented. | |
| Method | getChecklistHierarchy | ||
| 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 | canModifyChecklistHierarchy | ||
| 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 | addRootChecklist | ||
| Description |
Adds a root checklist. | ||
| Parameters | osid.id.Id | checklistId | the Id of a checklist |
| Errors | ALREADY_EXISTS | checklistId is already in hierarchy | |
| NOT_FOUND | checklistId is not found | ||
| NULL_ARGUMENT | checklistId is null | ||
| OPERATION_FAILED | unable to complete request | ||
| PERMISSION_DENIED | authorization failure | ||
| Compliance | mandatory | This method must be implemented. | |
| Method | removeRootChecklist | ||
| Description |
Removes a root checklist. | ||
| Parameters | osid.id.Id | checklistId | the Id of a checklist |
| Errors | NOT_FOUND | checklistId is not a root | |
| NULL_ARGUMENT | checklistId is null | ||
| OPERATION_FAILED | unable to complete request | ||
| PERMISSION_DENIED | authorization failure | ||
| Compliance | mandatory | This method must be implemented. | |
| Method | addChildChecklist | ||
| Description |
Adds a child to a checklist. | ||
| Parameters | osid.id.Id | checklistId | the Id of a checklist |
osid.id.Id | childId | the Id of the new child | |
| Errors | ALREADY_EXISTS | checklistId is already a parent of childId | |
| NOT_FOUND | checklistId or childId not found | ||
| NULL_ARGUMENT | checklistId or childId is null | ||
| OPERATION_FAILED | unable to complete request | ||
| PERMISSION_DENIED | authorization failure | ||
| Compliance | mandatory | This method must be implemented. | |
| Method | removeChildChecklist | ||
| Description |
Removes a child from a checklist. | ||
| Parameters | osid.id.Id | checklistId | the Id of a checklist |
osid.id.Id | childId | the Id of the new child | |
| Errors | NOT_FOUND | checklistId not a parent of childId | |
| NULL_ARGUMENT | checklistId or childId is null | ||
| OPERATION_FAILED | unable to complete request | ||
| PERMISSION_DENIED | authorization failure | ||
| Compliance | mandatory | This method must be implemented. | |
| Method | removeChildChecklists | ||
| Description |
Removes all children from a checklist. | ||
| Parameters | osid.id.Id | checklistId | the Id of a checklist |
| Errors | NOT_FOUND | checklistId not found | |
| NULL_ARGUMENT | checklistId is null | ||
| OPERATION_FAILED | unable to complete request | ||
| PERMISSION_DENIED | authorization failure | ||
| Compliance | mandatory | This method must be implemented. | |