public interface ShipmentQuerySession extends OsidSession
This session provides methods for searching among Shipment
objects. The search query is constructed using the
ShipmentQuery.
This session defines views that offer differing behaviors for searching.
Shipments may have a query record indicated by their respective record
types. The query record is accessed via the ShipmentQuery.
Modifier and Type | Method and Description |
---|---|
boolean |
canSearchShipments()
Tests if this user can perform
Shipment searches. |
ShipmentQuery |
getShipmentQuery()
Gets a shipment query.
|
ShipmentList |
getShipmentsByQuery(ShipmentQuery shipmentQuery)
Gets a list of
Shipments matching the given shipment
query. |
Warehouse |
getWarehouse()
Gets the
Warehouse associated with this session. |
Id |
getWarehouseId()
Gets the
Warehouse Id associated with
this session. |
void |
useFederatedWarehouseView()
Federates the view for methods in this session.
|
void |
useIsolatedWarehouseView()
Isolates the view for methods in this session.
|
getAuthenticatedAgent, getAuthenticatedAgentId, getClockRate, getDate, getEffectiveAgent, getEffectiveAgentId, getFormatType, getLocale, isAuthenticated, startTransaction, supportsTransactions
close
Id getWarehouseId()
Warehouse
Id
associated with
this session. Warehouse Id
associated with this sessionmandatory
- This method must be implemented. Warehouse getWarehouse() throws OperationFailedException, PermissionDeniedException
Warehouse
associated with this session.OperationFailedException
- unable to complete requestPermissionDeniedException
- authorization failuremandatory
- This method must be implemented. boolean canSearchShipments()
Shipment
searches. A
return of true does not guarantee successful authorization. A return
of false indicates that it is known all 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 search operations to
unauthorized users. false
if search methods are not authorized,
true
otherwisemandatory
- This method must be implemented. void useFederatedWarehouseView()
mandatory
- This method is must be implemented. void useIsolatedWarehouseView()
mandatory
- This method is must be implemented. ShipmentQuery getShipmentQuery()
mandatory
- This method must be implemented. ShipmentList getShipmentsByQuery(ShipmentQuery shipmentQuery) throws OperationFailedException, PermissionDeniedException
Shipments
matching the given shipment
query.shipmentQuery
- the shipment query ShipmentList
NullArgumentException
- shipmentQuery
is
null
OperationFailedException
- unable to complete requestPermissionDeniedException
- authorization failureUnsupportedException
- shipmentQuery
is
not of this servicemandatory
- This method must be implemented.