OSID Logo
OSID Specifications
dictionary package
Version 3.0.0
Release Candidate Preview
Interfaceosid.dictionary.EntrySmartDictionarySession
Implementsosid.OsidSession
Description

This session manages queries and sequencing to create "smart" dynamic catalogs. A EntryQuery can be retrieved from this session and mapped to this Dictionary to create a virtual collection of Entries. The entries may be sequenced using the EntrySearchOrder from this session.

This Dictionary has a default query that matches any entry and a default search order that specifies no sequencing. The queries may be examined using a EntryQueryInspector. The query may be modified by converting the inspector back to a EntryQuery.

MethodgetDictionaryId
Description

Gets the Dictionary Id associated with this session.

Returnosid.id.Idthe Dictionary Id associated with this session
CompliancemandatoryThis method must be implemented.
MethodgetDictionary
Description

Gets the Dictionary associated with this session.

Returnosid.dictionary.Dictionarythe Dictionary associated with this session
ErrorsOPERATION_FAILEDunable to complete request
PERMISSION_DENIEDauthorization failure
CompliancemandatoryThis method must be implemented.
MethodcanManageSmartDictionaries
Description

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

Gets a entry query.

Returnosid.dictionary.EntryQuerythe entry query
CompliancemandatoryThis method must be implemented.
MethodgetEntrySearchOrder
Description

Gets a entry search order.

Returnosid.dictionary.EntrySearchOrderthe entry search order
CompliancemandatoryThis method must be implemented.
MethodapplyEntryQuery
Description

Applies a entry query to this dictionary.

Parametersosid.dictionary.EntryQueryentryQuerythe entry query
ErrorsNULL_ARGUMENT entryQuery is null
OPERATION_FAILEDunable to complete request
PERMISSION_DENIEDauthorization failure occurred
UNSUPPORTED entryQuery not of this service
CompliancemandatoryThis method must be implemented.
MethodinspectEntryQuery
Description

Gets a entry query inspector for this dictionary.

Returnosid.dictionary.EntryQueryInspectorthe entry query inspector
ErrorsOPERATION_FAILEDunable to complete request
PERMISSION_DENIEDauthorization failure occurred
CompliancemandatoryThis method must be implemented.
MethodapplyEntrySequencing
Description

Applies a entry search order to this dictionary.

Parametersosid.dictionary.EntrySearchOrderentrySearchOrderthe entry search order
ErrorsNULL_ARGUMENT entrySearchOrder is null
OPERATION_FAILEDunable to complete request
PERMISSION_DENIEDauthorization failure occurred
UNSUPPORTED entrySearchOrder not of this service
CompliancemandatoryThis method must be implemented.
MethodgetEntryQueryFromInspector
Description

Gets a entry query from an inspector.

Parametersosid.dictionary.EntryQueryInspectorentryQueryInspectora entry query inspector
Returnosid.dictionary.EntryQuerythe entry query
ErrorsNULL_ARGUMENT entryQueryInspector is null
UNSUPPORTED entryQueryInspector is not of this service
CompliancemandatoryThis method must be implemented.