OSID Logo
OSID Specifications
billing package
Version 3.1.0
Interfaceosid.billing.PeriodSmartBusinessSession
Implementsosid.OsidSession
Used Byosid.billing.BillingManager
osid.billing.BillingProxyManager
Description

This session manages queries and sequencing to create "smart" dynamic catalogs. A PeriodQuery can be retrieved from this session and mapped to this Business to create a virtual collection of Periods. The periods may be sequenced using the PeriodSearchOrder from this session.

This Business has a default query that matches any period and a default search order that specifies no sequencing. The queries may be examined using a PeriodQueryInspector. The query may be modified by converting the inspector back to a PeriodQuery .

MethodgetBusinessId
Description

Gets the Business Id associated with this session.

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

Gets the Business associated with this session.

Returnosid.billing.Business the business
ErrorsOPERATION_FAILED unable to complete request
PERMISSION_DENIED authorization failure
Compliancemandatory This method must be implemented.
MethodcanManageSmartBusinesses
Description

Tests if this user can manage smart businesses. A return of true does not guarantee successful assessment. 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 business management is not authorized, true otherwise
Compliancemandatory This method must be implemented.
MethodgetPeriodQuery
Description

Gets a period query.

Returnosid.billing.PeriodQuery the period query
Compliancemandatory This method must be implemented.
MethodgetPeriodSearchOrder
Description

Gets a period search order.

Returnosid.billing.PeriodSearchOrder the period search order
Compliancemandatory This method must be implemented.
MethodapplyPeriodQuery
Description

Applies a period query to this business.

Parametersosid.billing.PeriodQueryperiodQuery the period query
ErrorsNULL_ARGUMENT periodQuery is null
OPERATION_FAILED unable to complete request
PERMISSION_DENIED authorization failure occurred
UNSUPPORTED periodQuery not of this service
Compliancemandatory This method must be implemented.
MethodinspectPeriodQuery
Description

Gets a period query inspector for this business.

Returnosid.billing.PeriodQueryInspector the period query inspector
ErrorsOPERATION_FAILED unable to complete request
PERMISSION_DENIED authorization failure occurred
Compliancemandatory This method must be implemented.
MethodapplyPeriodSequencing
Description

Applies a period search order to this business.

Parametersosid.billing.PeriodSearchOrderperiodSearchOrder the period search order
ErrorsNULL_ARGUMENT periodSearchOrder is null
OPERATION_FAILED unable to complete request
PERMISSION_DENIED authorization failure occurred
UNSUPPORTED periodSearchOrder not of this service
Compliancemandatory This method must be implemented.
MethodgetPeriodQueryFromInspector
Description

Gets a period query from an inspector.

Parametersosid.billing.PeriodQueryInspectorperiodQueryInspector a query inspector
Returnosid.billing.PeriodQuery the period query
ErrorsNULL_ARGUMENT periodQueryInspector is null
UNSUPPORTED periodQueryInspector is not of this service
Compliancemandatory This method must be implemented.