OSID Logo
OSID Specifications
billing payment package
Version 3.1.0
Interfaceosid.billing.payment.PayerSmartBusinessSession
Implementsosid.OsidSession
Used Byosid.billing.payment.BillingPaymentManager
osid.billing.payment.BillingPaymentProxyManager
Description

This session manages queries and sequencing to create "smart" dynamic catalogs. A PayerQuery can be retrieved from this session and mapped to this Business to create a virtual collection of Payers. The payers may be sequenced using the PayerSearchOrder from this session.

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

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

Gets a payer query.

Returnosid.billing.payment.PayerQuery the payer query
Compliancemandatory This method must be implemented.
MethodgetPayerSearchOrder
Description

Gets a payer search order.

Returnosid.billing.payment.PayerSearchOrder the payer search order
Compliancemandatory This method must be implemented.
MethodapplyPayerQuery
Description

Applies a payer query to this business.

Parametersosid.billing.payment.PayerQuerypayerQuery the payer query
ErrorsNULL_ARGUMENT payerQuery is null
OPERATION_FAILED unable to complete request
PERMISSION_DENIED authorization failure occurred
UNSUPPORTED payerQuery not of this service
Compliancemandatory This method must be implemented.
MethodinspectPayerQuery
Description

Gets a payer query inspector for this business.

Returnosid.billing.payment.PayerQueryInspector the payer query inspector
ErrorsOPERATION_FAILED unable to complete request
PERMISSION_DENIED authorization failure occurred
Compliancemandatory This method must be implemented.
MethodapplyPayerSequencing
Description

Applies a payer search order to this business.

Parametersosid.billing.payment.PayerSearchOrderpayerSearchOrder the payer search order
ErrorsNULL_ARGUMENT payerSearchOrder is null
OPERATION_FAILED unable to complete request
PERMISSION_DENIED authorization failure occurred
UNSUPPORTED payerSearchOrder not of this service
Compliancemandatory This method must be implemented.
MethodgetPayerQueryFromInspector
Description

Gets a payer query from an inspector.

Parametersosid.billing.payment.PayerQueryInspectorpayerQueryInspector a query inspector
Returnosid.billing.payment.PayerQuery the payer query
ErrorsNULL_ARGUMENT payerQueryInspector is null
UNSUPPORTED payerQueryInspector is not of this service
Compliancemandatory This method must be implemented.