OSID Logo
OSID Specifications
mapping path package
Version 3.0.0
Release Candidate Preview
Interfaceosid.mapping.path.SignalSmartMapSession
Implementsosid.OsidSession
Description

This session manages queries and sequencing to create "smart" dynamic catalogs. A SignalQuery can be retrieved from this session and mapped to this Map to create a virtual collection of Signals. The signals may be sequenced using the SignalSearchOrder from this session.

This Map has a default query that matches any signal and a default search order that specifies no sequencing. The queries may be examined using a SignalQueryInspector. The query may be modified by converting the inspector back to a SignalQuery.

MethodgetMapId
Description

Gets the Map Id associated with this session.

Returnosid.id.Idthe Map Id associated with this session
CompliancemandatoryThis method must be implemented.
MethodgetMap
Description

Gets the Map associated with this session.

Returnosid.mapping.Mapthe map
ErrorsOPERATION_FAILEDunable to complete request
PERMISSION_DENIEDauthorization failure
CompliancemandatoryThis method must be implemented.
MethodcanManageSmartMaps
Description

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

Gets a signal query.

Returnosid.mapping.path.SignalQuerythe signal query
CompliancemandatoryThis method must be implemented.
MethodgetSignalSearchOrder
Description

Gets a signal search order.

Returnosid.mapping.path.SignalSearchOrderthe signal search order
Compliancemandatorythe signal search order
MethodapplySignalQuery
Description

Applies a signal query to this map.

Parametersosid.mapping.path.SignalQuerysignalQuerythe signal query
ErrorsNULL_ARGUMENT signalQuery is null
OPERATION_FAILEDunable to complete request
PERMISSION_DENIEDauthorization failure occurred
UNSUPPORTED signalQuery not of this service
CompliancemandatoryThis method must be implemented.
MethodinspecSignalQuery
Description

Gets a signal query inspector for this map.

Returnosid.mapping.path.SignalQueryInspectorthe signal query inspector
ErrorsOPERATION_FAILEDunable to complete request
PERMISSION_DENIEDauthorization failure occurred
CompliancemandatoryThis method must be implemented.
MethodapplySignalSequencing
Description

Applies a signal search order to this map.

Parametersosid.mapping.path.SignalSearchOrdersignalSearchOrderthe signal search order
ErrorsNULL_ARGUMENT signalSearchOrder is null
OPERATION_FAILEDunable to complete request
PERMISSION_DENIEDauthorization failure occurred
UNSUPPORTED signalSearchOrder not of this service
CompliancemandatoryThis method must be implemented.
MethodgetSignalQueryFromInspector
Description

Gets a signal query from an inspector.

Parametersosid.mapping.path.SignalQueryInspectorsignalQueryInspectora signal query inspector
Returnosid.mapping.path.SignalQuerythe signal query
ErrorsNULL_ARGUMENT signalQueryInspector is null
UNSUPPORTED signalQueryInspector is not of this service
CompliancemandatoryThis method must be implemented.