OSID Logo
OSID Specifications
subscription rules package
Version 3.0.0
Release Candidate Preview
Interfaceosid.subscription.rules.SubscriptionEnablerQuerySession
Implementsosid.OsidSession
Description

This session provides methods for searching among SubscriptionEnabler objects. The search query is constructed using the SubscriptionEnablerQuery.

This session defines views that offer differing behaviors for searching.

  • federated publisher view: searches include subscription enablers in publishers of which this publisher is an ancestor in the publisher hierarchy
  • isolated publisher view: searches are restricted to subscription enablers in this publisher

Subscription enablers may have a query record indicated by their respective record types. The query record is accessed via the SubscriptionEnablerQuery.

MethodgetPublisherId
Description

Gets the Publisher Id associated with this session.

Returnosid.id.Idthe Publisher Id associated with this session
CompliancemandatoryThis method must be implemented.
MethodgetPublisher
Description

Gets the Publisher associated with this session.

Returnosid.subscription.Publisherthe publisher
ErrorsOPERATION_FAILEDunable to complete request
PERMISSION_DENIEDauthorization failure
CompliancemandatoryThis method must be implemented.
MethodcanSearchSubscriptionEnablers
Description

Tests if this user can perform SubscriptionEnabler lookups. A return of true does not guarantee successful authorization. A return of false indicates that it is known all methods in this session will result in a PERMISSION_DENIED. This is intended as a hint to an application that may not offer lookup operations to unauthorized users.

Returnboolean false if search methods are not authorized, true otherwise
CompliancemandatoryThis method must be implemented.
MethoduseFederatedPublisherView
Description

Federates the view for methods in this session. A federated view will include subscription enablers in publishers which are children of this publisher in the publisher hierarchy.

CompliancemandatoryThis method is must be implemented.
MethoduseIsolatedPublisherView
Description

Isolates the view for methods in this session. An isolated view restricts lookups to this publisher only.

CompliancemandatoryThis method is must be implemented.
MethodgetSubscriptionEnablerQuery
Description

Gets a subscription enabler query.

Returnosid.subscription.rules.SubscriptionEnablerQuerythe subscription enabler query
CompliancemandatoryThis method must be implemented.
MethodgetSubscriptionEnablersByQuery
Description

Gets a list of SubscriptionEnablers matching the given subscription enabler query.

Parametersosid.subscription.rules.SubscriptionEnablerQuerysubscriptionEnablerQuerythe subscription enabler query
Returnosid.subscription.rules.SubscriptionEnablerListthe returned SubscriptionEnablerList
ErrorsNULL_ARGUMENT subscriptionEnablerQuery is null
OPERATION_FAILEDunable to complete request
PERMISSION_DENIEDauthorization failure
UNSUPPORTED subscriptionEnablerQuery is not of this service
CompliancemandatoryThis method must be implemented.