OSID Logo
OSID Specifications
tracking package
Version 3.1.0
Interfaceosid.tracking.QueueSmartFrontOfficeSession
Implementsosid.OsidSession
Used Byosid.tracking.TrackingManager
osid.tracking.TrackingProxyManager
Description

This session manages queries and sequencing to create "smart" dynamic catalogs. A QueueQuery can be retrieved from this session and mapped to this FrontOffice to create a virtual collection of Queues. The queues may be sequenced using the QueueSearchOrder from this session.

This FrontOffice has a default query that matches any queue and a default search order that specifies no sequencing. The queries may be examined using a QueueQueryInspector. The query may be modified by converting the query inspector back to a QueueQuery.

MethodgetFrontOfficeId
Description

Gets the FrontOffice Id associated with this session.

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

Gets the FrontOffice associated with this session.

Returnosid.tracking.FrontOffice the front office
ErrorsOPERATION_FAILED unable to complete request
PERMISSION_DENIED authorization failure
Compliancemandatory This method must be implemented.
MethodcanManageSmartFrontOffices
Description

Tests if this user can manage smart frontOffices. A return of true does not guarantee successful authorization. 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 front office management is not authorized, true otherwise
Compliancemandatory This method must be implemented.
MethodgetQueueQuery
Description

Gets a queue query.

Returnosid.tracking.QueueQuery the queue query
Compliancemandatory This method must be implemented.
MethodgetQueueSearchOrder
Description

Gets a queue search order.

Returnosid.tracking.QueueSearchOrder the queue search order
Compliancemandatory This method must be implemented.
MethodapplyQueueQuery
Description

Applies a queue query to this front office.

Parametersosid.tracking.QueueQueryqueueQuery the queue query
ErrorsNULL_ARGUMENT queueQuery is null
OPERATION_FAILED unable to complete request
PERMISSION_DENIED authorization failure occurred
UNSUPPORTED queueQuery not of this service
Compliancemandatory This method must be implemented.
MethodinspectQueueQuery
Description

Gets a queue query inspector for this front office.

Returnosid.tracking.QueueQueryInspector the queue query inspector
ErrorsOPERATION_FAILED unable to complete request
PERMISSION_DENIED authorization failure occurred
Compliancemandatory This method must be implemented.
MethodapplyQueueSequencing
Description

Applies a queue search order to this front office.

Parametersosid.tracking.QueueSearchOrderqueueSearchOrder the queue search order
ErrorsNULL_ARGUMENT queueSearchOrder is null
OPERATION_FAILED unable to complete request
PERMISSION_DENIED authorization failure occurred
UNSUPPORTED queueSearchOrder not of this service
Compliancemandatory This method must be implemented.
MethodgetQueueQueryFromInspector
Description

Gets a queue query from an inspector.

Parametersosid.tracking.QueueQueryInspectorqueueQueryInspector a queue query inspector
Returnosid.tracking.QueueQuery the queue query
ErrorsNULL_ARGUMENT queueQueryInspector is null
UNSUPPORTED queueQueryInspector is not of this service
Compliancemandatory This method must be implemented.