OSID Logo
OSID Specifications
inventory package
Version 3.1.0
Interfaceosid.inventory.InventorySmartWarehouseSession
Implementsosid.OsidSession
Used Byosid.inventory.InventoryManager
osid.inventory.InventoryProxyManager
Description

This session manages queries and sequencing to create "smart" dynamic catalogs. An InventoryQuery can be retrieved from this session and mapped to this Warehouse to create a virtual collection of Inventories. The inventories may be sequenced using the InventorySearchOrder from this session.

This Warehouse has a default query that matches any inventory and a default search order that specifies no sequencing. The queries may be examined using an InventoryQueryInspector. The query may be modified by converting the inspector back to an InventoryQuery.

MethodgetWarehouseId
Description

Gets the Warehouse Id associated with this session.

Returnosid.id.Id the Warehouse Id associated with this session
Compliancemandatory This method must be implemented.
MethodgetWarehouse
Description

Gets the Warehouse associated with this session.

Returnosid.inventory.Warehouse the warehouse
ErrorsOPERATION_FAILED unable to complete request
PERMISSION_DENIED authorization failure
Compliancemandatory This method must be implemented.
MethodcanManageSmartWarehouses
Description

Tests if this user can manage smart warehouses. A return of true does not guarantee successful assessment. A return of false indicates that it is known methods in this session will result in a PERMISSION_DENIED. This is intended as a hint to an application that may opt not to offer operations to unauthorized users.

Returnboolean false if smart warehouse management is not authorized, true otherwise
Compliancemandatory This method must be implemented.
MethodgetInventoryQuery
Description

Gets an inventory query.

Returnosid.inventory.InventoryQuery the inventory query
Compliancemandatory This method must be implemented.
MethodgetInventorySearchOrder
Description

Gets an inventory search order.

Returnosid.inventory.InventorySearchOrder the inventory search order
Compliancemandatory This method must be implemented.
MethodapplyInventoryQuery
Description

Applies an inventory query to this warehouse.

Parametersosid.inventory.InventoryQueryinventoryQuery the inventory query
ErrorsNULL_ARGUMENT inventoryQuery is null
OPERATION_FAILED unable to complete request
PERMISSION_DENIED authorization failure occurred
UNSUPPORTED inventoryQuery not of this service
Compliancemandatory This method must be implemented.
MethodinspectInventoryQuery
Description

Gets an inventory query inspector for this warehouse.

Returnosid.inventory.InventoryQueryInspector the inventory query inspector
ErrorsOPERATION_FAILED unable to complete request
PERMISSION_DENIED authorization failure occurred
Compliancemandatory This method must be implemented.
MethodapplyInventorySequencing
Description

Applies an inventory search order to this warehouse.

Parametersosid.inventory.InventorySearchOrderinventorySearchOrder the inventory search order
ErrorsNULL_ARGUMENT inventorySearchOrder is null
OPERATION_FAILED unable to complete request
PERMISSION_DENIED authorization failure occurred
UNSUPPORTED inventorySearchOrder not of this service
Compliancemandatory This method must be implemented.
MethodgetInventoryQueryFromInspector
Description

Gets an inventory query from an inspector.

Parametersosid.inventory.InventoryQueryInspectorinventoryQueryInspector a query inspector
Returnosid.inventory.InventoryQuery the inventory query
ErrorsNULL_ARGUMENT inventoryQueryInspector is null
UNSUPPORTED inventoryQueryInspector is not of this service
Compliancemandatory This method must be implemented.