OSID Logo
OSID Specifications
billing payment package
Version 3.0.0
Release Candidate Preview
Interfaceosid.billing.payment.PaymentSmartBusinessSession
Implementsosid.OsidSession
Description

This session manages queries and sequencing to create "smart" dynamic catalogs. A PaymentQuery can be retrieved from this session and mapped to this CoursOfferingeCatalog to create a virtual collection of Payments. The payments may be sequenced using the PaymentSearchOrder from this session.

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

MethodgetBusinessId
Description

Gets the Business Id associated with this session.

Returnosid.id.Idthe Business Id associated with this session
CompliancemandatoryThis method must be implemented.
MethodgetBusiness
Description

Gets the Business associated with this session.

Returnosid.billing.Businessthe business
ErrorsOPERATION_FAILEDunable to complete request
PERMISSION_DENIEDauthorization failure
CompliancemandatoryThis 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
CompliancemandatoryThis method must be implemented.
MethodgetPaymentQuery
Description

Gets a payment query.

Returnosid.billing.payment.PaymentQuerythe payment query
CompliancemandatoryThis method must be implemented.
MethodgetPaymentSearchOrder
Description

Gets a payment search order.

Returnosid.billing.payment.PaymentSearchOrderthe payment search order
CompliancemandatoryThis method must be implemented.
MethodapplyPaymentQuery
Description

Applies a payment query to this business.

Parametersosid.billing.payment.PaymentQuerypaymentQuerythe payment query
ErrorsNULL_ARGUMENT paymentQuery is null
OPERATION_FAILEDunable to complete request
PERMISSION_DENIEDauthorization failure occurred
UNSUPPORTED paymentQuery not of this service
CompliancemandatoryThis method must be implemented.
MethodinspectPaymentQuery
Description

Gets a payment query inspector for this business.

Returnosid.billing.payment.PaymentQueryInspectorthe payment query inspector
ErrorsOPERATION_FAILEDunable to complete request
PERMISSION_DENIEDauthorization failure occurred
CompliancemandatoryThis method must be implemented.
MethodapplyPaymentSequencing
Description

Applies a payment search order to this business.

Parametersosid.billing.payment.PaymentSearchOrderpaymentSearchOrderthe payment search order
ErrorsNULL_ARGUMENT paymentSearchOrder is null
OPERATION_FAILEDunable to complete request
PERMISSION_DENIEDauthorization failure occurred
UNSUPPORTED paymentSearchOrder not of this service
CompliancemandatoryThis method must be implemented.
MethodgetPaymentQueryFromInspector
Description

Gets a payment query from an inspector.

Parametersosid.billing.payment.PaymentQueryInspectorpaymentQueryInspectora query inspector
Returnosid.billing.payment.PaymentQuerythe payment query
ErrorsNULL_ARGUMENT paymentQueryInspector is null
UNSUPPORTED paymentQueryInspector is not of this service
CompliancemandatoryThis method must be implemented.