OSID Logo
OSID Specifications
inventory shipment package
Version 3.1.0
Interfaceosid.inventory.shipment.ShipmentSmartWarehouseSession
Implementsosid.OsidSession
Used Byosid.inventory.shipment.InventoryShipmentManager
osid.inventory.shipment.InventoryShipmentProxyManager
Description

This session manages queries and sequencing to create "smart" dynamic catalogs. A ShipmentQuery can be retrieved from this session and mapped to this Warehouse to create a virtual collection of Shipments. The shipments may be sequenced using the ShipmentSearchOrder from this session.

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

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.
MethodgetShipmentQuery
Description

Gets a shipment query.

Returnosid.inventory.shipment.ShipmentQuery the shipment query
Compliancemandatory This method must be implemented.
MethodgetShipmentSearchOrder
Description

Gets a shipment search order.

Returnosid.inventory.shipment.ShipmentSearchOrder the shipment search order
Compliancemandatory This method must be implemented.
MethodapplyShipmentQuery
Description

Applies a shipment query to this warehouse.

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

Gets a shipment query inspector for this warehouse.

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

Applies a shipment search order to this warehouse.

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

Gets a shipment query from an inspector.

Parametersosid.inventory.shipment.ShipmentQueryInspectorshipmentQueryInspector a query inspector
Returnosid.inventory.shipment.ShipmentQuery the shipment query
ErrorsNULL_ARGUMENT shipmentQueryInspector is null
UNSUPPORTED shipmentQueryInspector is not of this service
Compliancemandatory This method must be implemented.