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

This session manages queries and sequencing to create "smart" dynamic catalogs. A CustomerQuery can be retrieved from this session and mapped to this Business to create a virtual collection of Customers. The customers may be sequenced using the CustomerSearchOrder from this session.

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

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.
MethodgetCustomerQuery
Description

Gets a customer query.

Returnosid.billing.CustomerQuery the customer query
Compliancemandatory This method must be implemented.
MethodgetCustomerSearchOrder
Description

Gets a customer search order.

Returnosid.billing.CustomerSearchOrder the customer search order
Compliancemandatory This method must be implemented.
MethodapplyCustomerQuery
Description

Applies a customer query to this business.

Parametersosid.billing.CustomerQuerycustomerQuery the customer query
ErrorsNULL_ARGUMENT customerQuery is null
OPERATION_FAILED unable to complete request
PERMISSION_DENIED authorization failure occurred
UNSUPPORTED customerQuery not of this service
Compliancemandatory This method must be implemented.
MethodinspectCustomerQuery
Description

Gets a customer query inspector for this business.

Returnosid.billing.CustomerQueryInspector the customer query inspector
ErrorsOPERATION_FAILED unable to complete request
PERMISSION_DENIED authorization failure occurred
Compliancemandatory This method must be implemented.
MethodapplyCustomerSequencing
Description

Applies a customer search order to this business.

Parametersosid.billing.CustomerSearchOrdercustomerSearchOrder the customer search order
ErrorsNULL_ARGUMENT customerSearchOrder is null
OPERATION_FAILED unable to complete request
PERMISSION_DENIED authorization failure occurred
UNSUPPORTED customerSearchOrder not of this service
Compliancemandatory This method must be implemented.
MethodgetCustomerQueryFromInspector
Description

Gets a customer query from an inspector.

Parametersosid.billing.CustomerQueryInspectorcustomerQueryInspector a query inspector
Returnosid.billing.CustomerQuery the customer query
ErrorsNULL_ARGUMENT customerQueryInspector is null
UNSUPPORTED customerQueryInspector is not of this service
Compliancemandatory This method must be implemented.