OSID Logo
OSID Specifications
provisioning package
Version 3.0.0
Release Candidate Preview
Interfaceosid.provisioning.QueueSmartDistributorSession
Implementsosid.OsidSession
Description

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

This Distributor 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 inspector back to a QueueQuery.

MethodgetDistributorId
Description

Gets the Distributor Id associated with this session.

Returnosid.id.Idthe Distributor Id associated with this session
CompliancemandatoryThis method must be implemented.
MethodgetDistributor
Description

Gets the Distributor associated with this session.

Returnosid.provisioning.Distributorthe distributor
ErrorsOPERATION_FAILEDunable to complete request
PERMISSION_DENIEDauthorization failure
CompliancemandatoryThis method must be implemented.
MethodcanManageSmartDistributors
Description

Tests if this user can manage smart distributors. 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 distributor management is not authorized, true otherwise
CompliancemandatoryThis method must be implemented.
MethodgetQueueQuery
Description

Gets a queue query.

Returnosid.provisioning.QueueQuerythe queue query
CompliancemandatoryThis method must be implemented.
MethodgetQueueSearchOrder
Description

Gets a queue search order.

Returnosid.provisioning.QueueSearchOrderthe queue search order
CompliancemandatoryThis method must be implemented.
MethodapplyQueueQuery
Description

Applies a queue query to this distributor.

Parametersosid.provisioning.QueueQueryqueueQuerythe queue query
ErrorsNULL_ARGUMENT queueQuery is null
OPERATION_FAILEDunable to complete request
PERMISSION_DENIEDauthorization failure occurred
UNSUPPORTED queueQuery not of this service
CompliancemandatoryThis method must be implemented.
MethodinspecQueueQuery
Description

Gets a queue query inspector for this distributor.

Returnosid.provisioning.QueueQueryInspectorthe queue query inspector
ErrorsOPERATION_FAILEDunable to complete request
PERMISSION_DENIEDauthorization failure occurred
CompliancemandatoryThis method must be implemented.
MethodapplyQueueSequencing
Description

Applies a queue search order to this distributor.

Parametersosid.provisioning.QueueSearchOrderqueueSearchOrderthe queue search order
ErrorsNULL_ARGUMENT queueSearchOrder is null
OPERATION_FAILEDunable to complete request
PERMISSION_DENIEDauthorization failure occurred
UNSUPPORTED queueSearchOrder not of this service
CompliancemandatoryThis method must be implemented.
MethodgetQueueQueryFromInspector
Description

Gets a queue query from an inspector.

Parametersosid.provisioning.QueueQueryInspectorqueueQueryInspectora queue query inspector
Returnosid.provisioning.QueueQuerythe queue query
ErrorsNULL_ARGUMENT queueQueryInspector is null
UNSUPPORTED queueQueryInspector is not of this service
CompliancemandatoryThis method must be implemented.