OSID Logo
OSID Specifications
room squatting package
Version 3.1.0
Interfaceosid.room.squatting.LeaseSmartCampusSession
Implementsosid.OsidSession
Used Byosid.room.squatting.RoomSquattingManager
osid.room.squatting.RoomSquattingProxyManager
Description

This session manages queries and sequencing to create "smart" dynamic catalogs. A LeaseQuery can be retrieved from this session and mapped to this Campus to create a virtual collection of Leases. The leases may be sequenced using the LeaseSearchOrder from this session.

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

MethodgetCampusId
Description

Gets the Campus Id associated with this session.

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

Gets the Campus associated with this session.

Returnosid.room.Campus the Campus associated with this session
ErrorsOPERATION_FAILED unable to complete request
PERMISSION_DENIED authorization failure
Compliancemandatory This 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
Compliancemandatory This method must be implemented.
MethodgetLeaseQuery
Description

Gets a lease query.

Returnosid.room.squatting.LeaseQuery the lease query
Compliancemandatory This method must be implemented.
MethodgetLeaseSearchOrder
Description

Gets a lease search order.

Returnosid.room.squatting.LeaseSearchOrder the lease search order
Compliancemandatory This method must be implemented.
MethodapplyLeaseQuery
Description

Applies a lease query to this campus.

Parametersosid.room.squatting.LeaseQueryleaseQuery the lease query
ErrorsNULL_ARGUMENT leaseQuery is null
OPERATION_FAILED unable to complete request
PERMISSION_DENIED authorization failure occurred
UNSUPPORTED leaseQuery not of this service
Compliancemandatory This method must be implemented.
MethodinspectLeaseQuery
Description

Gets a lease query inspector for this campus.

Returnosid.room.squatting.LeaseQueryInspector the lease query inspector
ErrorsOPERATION_FAILED unable to complete request
PERMISSION_DENIED authorization failure occurred
Compliancemandatory This method must be implemented.
MethodapplyLeaseSequencing
Description

Applies a lease search order to this campus.

Parametersosid.room.squatting.LeaseSearchOrderleaseSearchOrder the lease search order
ErrorsNULL_ARGUMENT leaseSearchOrder is null
OPERATION_FAILED unable to complete request
PERMISSION_DENIED authorization failure occurred
UNSUPPORTED leaseSearchOrder not of this service
Compliancemandatory This method must be implemented.
MethodgetLeaseQueryFromInspector
Description

Gets a lease query from an inspector.

Parametersosid.room.squatting.LeaseQueryInspectorleaseQueryInspector a query inspector
Returnosid.room.squatting.LeaseQuery the lease query
ErrorsNULL_ARGUMENT leaseQueryInspector is null
UNSUPPORTED leaseQueryInspector is not of this service
Compliancemandatory This method must be implemented.