OSID Logo
OSID Specifications
provisioning package
Version 3.1.0
Interfaceosid.provisioning.RequestTransactionLookupSession
Implementsosid.OsidSession
Used Byosid.provisioning.ProvisioningManager
osid.provisioning.ProvisioningProxyManager
Description

This session provides methods for retrieving RequestTransactions.

This session defines views that offer differing behaviors when retrieving multiple objects.

  • comparative view: elements may be silently omitted or re-ordered
  • plenary view: provides a complete set or is an error condition
  • isolated distributor view: All request transaction methods in this session operate, retrieve and pertain to request transactions defined explicitly in the current distributor. Using an isolated view is useful for managing RequestTransactions with the RequesTransactionAdminSession.
  • federated distributor view: All request transaction methods in this session operate, retrieve and pertain to all request transaction defined in this distributor and any other request transaction implicitly available in this distributor through distributor inheritence.
  • effective request view: All request transaction lookup methods return request transactions where the current date falls in between the effective dates inclusive.
  • any effective request view: Request transactions of any effective date are returned from methods.

Generally, the comparative view should be used for most applications as it permits operation even if there is data that cannot be accessed. The methods useFederatedDistributorView() and useIsolatedDistributorView() behave as a radio group and one should be selected before invoking any lookup methods.

MethodgetDistributorId
Description

Gets the Distributor Id associated with this session.

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

Gets the Distributor associated with this session.

Returnosid.provisioning.Distributor the distributor
ErrorsOPERATION_FAILED unable to complete request
PERMISSION_DENIED authorization failure
Compliancemandatory This method must be implemented.
MethodcanLookupRequestTransactions
Description

Tests if this user can perform RequestTransaction 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 opt not to offer lookup operations to unauthorized users.

Returnboolean false if lookup methods are not authorized, true otherwise
Compliancemandatory This method must be implemented.
MethoduseComparativeRequestTransactionView
Description

The returns from the lookup methods may omit or translate elements based on this session, such as authorization, and not result in an error. This view is used when greater interoperability is desired at the expense of precision.

Compliancemandatory This method is must be implemented.
MethodusePlenaryRequestTransactionView
Description

A complete view of the RequestTransaction returns is desired. Methods will return what is requested or result in an error. This view is used when greater precision is desired at the expense of interoperability.

Compliancemandatory This method is must be implemented.
MethoduseFederatedDistributorView
Description

Federates the view for methods in this session. A federated view will include request transactions in distributors which are children of this distributor in the distributor hierarchy.

Compliancemandatory This method is must be implemented.
MethoduseIsolatedDistributorView
Description

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

Compliancemandatory This method is must be implemented.
MethoduseEffectiveRequestTransactionView
Description

Only request transactions whose effective dates are current are returned by methods in this session.

Compliancemandatory This method is must be implemented.
MethoduseAnyEffectiveRequestTransactionView
Description

All request transactions of any effective dates are returned by methods in this session.

Compliancemandatory This method is must be implemented.
MethodgetRequestTransaction
Description

Gets the RequestTransaction specified by its Id.

In plenary mode, the exact Id is found or a NOT_FOUND results. Otherwise, the returned RequestTransaction may have a different Id than requested, such as the case where a duplicate Id was assigned to a RequestTransaction and retained for compatibility.

In effective mode, request transactions are returned that are currently effective. In any effective mode, effective request transactions and those currently expired are returned.

Parametersosid.id.IdrequestTransactionId Id of RequestTransaction
Returnosid.provisioning.RequestTransaction the request transaction
ErrorsNOT_FOUND requestTransactionId not found
NULL_ARGUMENT requestTransactionId is null
OPERATION_FAILED unable to complete request
PERMISSION_DENIED authorization failure
Compliancemandatory This method is must be implemented.
MethodgetRequestTransactionsByIds
Description

Gets a RequestTransactionList corresponding to the given IdList.

In plenary mode, the returned list contains all of the request transaction specified in the Id list, in the order of the list, including duplicates, or an error results if an Id in the supplied list is not found or inaccessible. Otherwise, inaccessible RequestTransactions may be omitted from the list and may present the elements in any order including returning a unique set.

In effective mode, request transactions are returned that are currently effective. In any effective mode, effective request transactions and those currently expired are returned.

Parametersosid.id.IdListrequestTransactionIds the list of Ids to retrieve
Returnosid.provisioning.RequestTransactionList the returned RequestTransaction list
ErrorsNOT_FOUND an Id was not found
NULL_ARGUMENT requestTransactionIds is null
OPERATION_FAILED unable to complete request
PERMISSION_DENIED authorization failure
Compliancemandatory This method must be implemented.
MethodgetRequestTransactionsByGenusType
Description

Gets a RequestTransactionList corresponding to the given request transaction genus Type which does not include of genus types derived from the specified Type.

In plenary mode, the returned list contains all known request transactions or an error results. Otherwise, the returned list may contain only those request transactions that are accessible through this session.

In effective mode, request transactions are returned that are currently effective. In any effective mode, effective request transactions and those currently expired are returned.

Parametersosid.type.TyperequestTransactionGenusType a request transaction genus type
Returnosid.provisioning.RequestTransactionList the returned RequestTransaction list
ErrorsNULL_ARGUMENT requestTransactionGenusType is null
OPERATION_FAILED unable to complete request
PERMISSION_DENIED authorization failure
Compliancemandatory This method must be implemented.
MethodgetRequestTransactionsByParentGenusType
Description

Gets a RequestTransactionList corresponding to the given request transaction genus Type and include any additional request transaction with genus types derived from the specified Type.

In plenary mode, the returned list contains all known request transactions or an error results. Otherwise, the returned list may contain only those request transactions that are accessible through this session.

In effective mode, request transactions are returned that are currently effective. In any effective mode, effective request transactions and those currently expired are returned.

Parametersosid.type.TyperequestTransactionGenusType a request transaction genus type
Returnosid.provisioning.RequestTransactionList the returned RequestTransaction list
ErrorsNULL_ARGUMENT requestTransactionGenusType is null
OPERATION_FAILED unable to complete request
PERMISSION_DENIED authorization failure
Compliancemandatory This method must be implemented.
MethodgetRequestTransactionsByRecordType
Description

Gets a RequestTransactionList containing the given request transaction record Type.

In plenary mode, the returned list contains all known request transactions or an error results. Otherwise, the returned list may contain only those request transactions that are accessible through this session.

In effective mode, request transactions are returned that are currently effective. In any effective mode, effective request transactions and those currently expired are returned.

Parametersosid.type.TyperequestTransactionRecordType a request transaction record type
Returnosid.provisioning.RequestTransactionList the returned RequestTransaction list
ErrorsNULL_ARGUMENT requestTransactionRecordType is null
OPERATION_FAILED unable to complete request
PERMISSION_DENIED authorization failure
Compliancemandatory This method must be implemented.
MethodgetRequestTransactionsByRequest
Description

Gets a list of request transactions by request.

In plenary mode, the returned list contains all known request transaction or an error results. Otherwise, the returned list may contain only those request transactions that are accessible through this session.

In effective mode, request transactions are returned that are currently effective. In any effective mode, effective request transactions and those currently expired are returned.

Parametersosid.id.IdrequestId a request Id
Returnosid.provisioning.RequestTransactionList the returned RequestTransaction list
ErrorsNULL_ARGUMENT requestId is null
OPERATION_FAILED unable to complete request
PERMISSION_DENIED authorization failure
Compliancemandatory This method must be implemented.
MethodgetRequestTransactionsOnDate
Description

Gets a list of request transactions effective beginning in the date range. Request transaction are returned with a start effective date that falls between the requested dates inclusive.

In plenary mode, the returned list contains all known request transaction or an error results. Otherwise, the returned list may contain only those request transactions that are accessible through this session.

In effective mode, request transactions are returned that are currently effective in addition to being effective in the given date range. In any effective mode, effective request transactions and those currently expired are returned.

Parametersosid.calendaring.DateTimefrom start of date range
osid.calendaring.DateTimeto end of date range
Returnosid.provisioning.RequestTransactionList the returned RequestTransaction list
ErrorsINVALID_ARGUMENT from is greater than to
NULL_ARGUMENT from or to is null
OPERATION_FAILED unable to complete request
PERMISSION_DENIED authorization failure
Compliancemandatory This method must be implemented.
MethodgetRequestTransactionsForSubmitter
Description

Gets a list of request transactions for a submitter in the request transaction.

In plenary mode, the returned list contains all known request transactions or an error results. Otherwise, the returned list may contain only those request transactions that are accessible through this session.

In effective mode, request transactions are returned that are currently effective. In any effective mode, effective request transactions and those currently expired are returned.

Parametersosid.id.IdresourceId a resource Id
Returnosid.provisioning.RequestTransactionList the returned RequestTransaction list
ErrorsNULL_ARGUMENT resourceId is null
OPERATION_FAILED unable to complete request
PERMISSION_DENIED authorization failure
Compliancemandatory This method must be implemented.
MethodgetRequestTransactionsForSubmitterOnDate
Description

Gets a list of request transactions for a submitter and effective beginning in the date range. Request transactions are returned with a start effective date that falls between the requested dates inclusive.

In plenary mode, the returned list contains all known request transactions or an error results. Otherwise, the returned list may contain only those request transactions that are accessible through this session.

In effective mode, request transactions are returned that are currently effective in addition to being effective in the given date range. In any effective mode, effective request transactions and those currently expired are returned.

Parametersosid.id.IdresourceId a resource Id
osid.calendaring.DateTimefrom start of date range
osid.calendaring.DateTimeto end of date range
Returnosid.provisioning.RequestTransactionList the returned RequestTransaction list
ErrorsINVALID_ARGUMENT from is greater than to
NULL_ARGUMENT resourceId, from or to is null
OPERATION_FAILED unable to complete request
PERMISSION_DENIED authorization failure
Compliancemandatory This method must be implemented.
MethodgetRequestTransactionsForBroker
Description

Gets a list of request transactions for a bropker.

In plenary mode, the returned list contains all known request transactions or an error results. Otherwise, the returned list may contain only those request transactions that are accessible through this session.

In effective mode, request transactions are returned that are currently effective. In any effective mode, effective request transactions and those currently expired are returned.

Parametersosid.id.IdbrokerId a broker Id
Returnosid.provisioning.RequestTransactionList the returned RequestTransaction list
ErrorsNULL_ARGUMENT brokerId is null
OPERATION_FAILED unable to complete request
PERMISSION_DENIED authorization failure
Compliancemandatory This method must be implemented.
MethodgetRequestTransactionsForBrokerOnDate
Description

Gets a list of request transactions for a broker and effective beginning in the date range. Request transactions are returned with a start effective date that falls between the requested dates inclusive.

In plenary mode, the returned list contains all known request transactions or an error results. Otherwise, the returned list may contain only those request transactions that are accessible through this session.

In effective mode, request transactions are returned that are currently effective in addition to being effective in the given date range. In any effective mode, effective request transactions and those currently expired are returned.

Parametersosid.id.IdbrokerId a broker Id
osid.calendaring.DateTimefrom start of date range
osid.calendaring.DateTimeto end of date range
Returnosid.provisioning.RequestTransactionList the returned RequestTransaction list
ErrorsINVALID_ARGUMENT from is greater than to
NULL_ARGUMENT brokerId, from or to is null
OPERATION_FAILED unable to complete request
PERMISSION_DENIED authorization failure
Compliancemandatory This method must be implemented.
MethodgetRequestTransactionsForSubmitterAndBroker
Description

Gets a list of request transactions for a submitter and broker.

In plenary mode, the returned list contains all known request transactions or an error results. Otherwise, the returned list may contain only those request transactions that are accessible through this session.

In effective mode, request transactions are returned that are currently effective. In any effective mode, effective request transactions and those currently expired are returned.

Parametersosid.id.IdresourceId a resource Id
osid.id.IdbrokerId a broker Id
Returnosid.provisioning.RequestTransactionList the returned RequestTransaction list
ErrorsNULL_ARGUMENT resourceId or brokerId is null
OPERATION_FAILED unable to complete request
PERMISSION_DENIED authorization failure
Compliancemandatory This method must be implemented.
MethodgetRequestTransactionsForSubmitterAndBrokerOnDate
Description

Gets a list of request transactions for a submitter and broker and effective beginning in the date range. Request transaction are returned with a start effective date that falls between the requested dates inclusive.

In plenary mode, the returned list contains all known request transactions or an error results. Otherwise, the returned list may contain only those request transactions that are accessible through this session.

In effective mode, request transactions are returned that are currently effective in addition to being effective in the given date range. In any effective mode, effective request transactions and those currently expired are returned.

Parametersosid.id.IdresourceId a resource Id
osid.id.IdbrokerId a broker Id
osid.calendaring.DateTimefrom start of date range
osid.calendaring.DateTimeto end of date range
Returnosid.provisioning.RequestTransactionList the returned RequestTransaction list
ErrorsINVALID_ARGUMENT from is greater than to
NULL_ARGUMENT resourceId, brokerId, from or to is null
OPERATION_FAILED unable to complete request
PERMISSION_DENIED authorization failure
Compliancemandatory This method must be implemented.
MethodgetRequestTransactions
Description

Gets all RequestTransactions.

In plenary mode, the returned list contains all known request transactions or an error results. Otherwise, the returned list may contain only those request transactions that are accessible through this session.

In effective mode, request transactions are returned that are currently effective. In any effective mode, effective request transactions and those currently expired are returned.

Returnosid.provisioning.RequestTransactionList a list of RequestTransaction
ErrorsOPERATION_FAILED unable to complete request
PERMISSION_DENIED authorization failure
Compliancemandatory This method must be implemented.