OSID Logo
OSID Specifications
room squatting package
Version 3.0.0
Release Candidate Preview
Interfaceosid.room.squatting.DeedSmartCampusSession
Implementsosid.OsidSession
Description

This session manages queries and sequencing to create "smart" dynamic catalogs. A DeedQuery can be retrieved from this session and mapped to this Campus to create a virtual collection of Deeds. The deeds may be sequenced using the DeedSearchOrder from this session.

This Campus has a default query that matches any deed and a default search order that specifies no sequencing. The queries may be examined using a DeedQueryInspector. The query may be modified by converting the inspector back to a DeedQuery.

MethodgetCampusId
Description

Gets the Campus Id associated with this session.

Returnosid.id.Idthe Campus Id associated with this session
CompliancemandatoryThis method must be implemented.
MethodgetCampus
Description

Gets the Campus associated with this session.

Returnosid.room.Campusthe Campus associated with this session
ErrorsOPERATION_FAILEDunable to complete request
PERMISSION_DENIEDauthorization failure
CompliancemandatoryThis method must be implemented.
MethodcanManageSmartCampuses
Description

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

Gets a deed query.

Returnosid.room.squatting.DeedQuerythe deed query
CompliancemandatoryThis method must be implemented.
MethodgetDeedSearchOrder
Description

Gets a deed search order.

Returnosid.room.squatting.DeedSearchOrderthe deed search order
CompliancemandatoryThis method must be implemented.
MethodapplyDeedQuery
Description

Applies a deed query to this campus.

Parametersosid.room.squatting.DeedQuerydeedQuerythe deed query
ErrorsNULL_ARGUMENT deedQuery is null
OPERATION_FAILEDunable to complete request
PERMISSION_DENIEDauthorization failure occurred
UNSUPPORTED deedQuery not of this service
CompliancemandatoryThis method must be implemented.
MethodinspectDeedQuery
Description

Gets a deed query inspector for this campus.

Returnosid.room.squatting.DeedQueryInspectorthe deed query inspector
ErrorsOPERATION_FAILEDunable to complete request
PERMISSION_DENIEDauthorization failure occurred
CompliancemandatoryThis method must be implemented.
MethodapplyDeedSequencing
Description

Applies a deed search order to this campus.

Parametersosid.room.squatting.DeedSearchOrderdeedSearchOrderthe deed search order
ErrorsNULL_ARGUMENT deedSearchOrder is null
OPERATION_FAILEDunable to complete request
PERMISSION_DENIEDauthorization failure occurred
UNSUPPORTED deedSearchOrder did not originate from getDeedSearchOrder()
CompliancemandatoryThis method must be implemented.
MethodgetDeedQueryFromInspector
Description

Gets a deed query from an inspector.

Parametersosid.room.squatting.DeedQueryInspectordeedQueryInspectora query inspector
Returnosid.room.squatting.DeedQuerythe deed query
ErrorsNULL_ARGUMENT deedQueryInspector is null
UNSUPPORTED deedQueryInspector is not of this service
CompliancemandatoryThis method must be implemented.