OSID Logo
OSID Specifications
subscription rules package
Version 3.1.0
Interfaceosid.subscription.rules.DispatchProcessorEnablerQuerySession
Implementsosid.OsidSession
Implemented Byosid.subscription.rules.DispatchProcessorEnablerSearchSession
Used Byosid.subscription.rules.SubscriptionRulesManager
osid.subscription.rules.SubscriptionRulesProxyManager
Description

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

This session defines views that offer differing behaviors for searching.

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

Dispatch processor enablers may have a query record indicated by their respective record types. The query record is accessed via the DispatchQuery.

MethodgetPublisherId
Description

Gets the Publisher Id associated with this session.

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

Gets the Publisher associated with this session.

Returnosid.subscription.Publisher the publisher
ErrorsOPERATION_FAILED unable to complete request
PERMISSION_DENIED authorization failure
Compliancemandatory This method must be implemented.
MethodcanSearchDispatchProcessorEnablers
Description

Tests if this user can perform DispatchProcessorEnabler searches. 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
Compliancemandatory This method must be implemented.
MethoduseFederatedPublisherView
Description

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

Compliancemandatory This method is must be implemented.
MethoduseIsolatedPublisherView
Description

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

Compliancemandatory This method is must be implemented.
MethodgetDispatchProcessorEnablerQuery
Description

Gets a dispatch processor enabler query.

Returnosid.subscription.rules.DispatchProcessorEnablerQuery the dispatch processor enabler query
Compliancemandatory This method must be implemented.
MethodgetDispatchProcessorEnablersByQuery
Description

Gets a list of DispatchProcessorEnablers matching the given search.

Parametersosid.subscription.rules.DispatchProcessorEnablerQuerydispatchProcessorEnablerQuery the dispatch processor enabler query
Returnosid.subscription.rules.DispatchProcessorEnablerList the returned DispatchProcessorEnablerList
ErrorsNULL_ARGUMENT dispatchProcessorEnablerQuery is null
OPERATION_FAILED unable to complete request
PERMISSION_DENIED authorization failure
UNSUPPORTED dispatchProcessorEnablerQuery did not originate from getDispatchProcessorEnablerQuery()
Compliancemandatory This method must be implemented.