Interface | osid.inventory.WarehouseHierarchyDesignSession | ||
---|---|---|---|
Implements | osid.OsidSession | ||
Description |
This session defines methods for managing a hierarchy of
| ||
Method | getWarehouseHierarchyId | ||
Description |
Gets the hierarchy | ||
Return | osid.id.Id | the hierarchy Id associated with this session | |
Compliance | mandatory | This method must be implemented. | |
Method | getWarehouseHierarchy | ||
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 | canModifyWarehouseHierarchy | ||
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 | addRootWarehouse | ||
Description |
Adds a root warehouse. | ||
Parameters | osid.id.Id | warehouseId | the Id of a warehouse |
Errors | ALREADY_EXISTS | warehouseId is already in hierarchy | |
NOT_FOUND | warehouseId not found | ||
NULL_ARGUMENT | warehouseId is null | ||
OPERATION_FAILED | unable to complete request | ||
PERMISSION_DENIED | authorization failure | ||
Compliance | mandatory | This method must be implemented. | |
Method | removeRootWarehouse | ||
Description |
Removes a warehouse. | ||
Parameters | osid.id.Id | warehouseId | the Id of a warehouse |
Errors | NOT_FOUND | warehouseId not a root | |
NULL_ARGUMENT | warehouseId is null | ||
OPERATION_FAILED | unable to complete request | ||
PERMISSION_DENIED | authorization failure | ||
Compliance | mandatory | This method must be implemented. | |
Method | addChildWarehouse | ||
Description |
Adds a child to a warehouse. | ||
Parameters | osid.id.Id | warehouseId | the Id of a warehouse |
osid.id.Id | childId | the Id of the new child | |
Errors | ALREADY_EXISTS | warehouseId is already a parent of childId | |
NOT_FOUND | warehouseId or childId not found | ||
NULL_ARGUMENT | warehouseId or childId is null | ||
OPERATION_FAILED | unable to complete request | ||
PERMISSION_DENIED | authorization failure | ||
Compliance | mandatory | This method must be implemented. | |
Method | removeChildWarehouse | ||
Description |
Removes a child from a warehouse. | ||
Parameters | osid.id.Id | warehouseId | the Id of a warehouse |
osid.id.Id | childId | the Id of the new child | |
Errors | NOT_FOUND | warehouseId is not a parent of childId | |
NULL_ARGUMENT | warehouseId or childId is null | ||
OPERATION_FAILED | unable to complete request | ||
PERMISSION_DENIED | authorization failure | ||
Compliance | mandatory | This method must be implemented. | |
Method | removeChildWarehouses | ||
Description |
Removes all children from a warehouse. | ||
Parameters | osid.id.Id | warehouseId | the Id of a warehouse |
Errors | NOT_FOUND | warehouseId is in hierarchy | |
NULL_ARGUMENT | warehouseId is null | ||
OPERATION_FAILED | unable to complete request | ||
PERMISSION_DENIED | authorization failure | ||
Compliance | mandatory | This method must be implemented. |