Interface RequestTransactionLookupSession
- All Superinterfaces:
AutoCloseable, Closeable, OsidSession, OsidSession
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
RequestTransactionswith theRequesTransactionAdminSession. - 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.
-
Method Summary
Modifier and TypeMethodDescriptionbooleanTests if this user can performRequestTransactionlookups.Gets theDistributorassociated with this session.Gets theDistributorIdassociated with this session.getRequestTransaction(Id requestTransactionId) Gets theRequestTransactionspecified by itsId.Gets allRequestTransactions.getRequestTransactionsByGenusType(Type requestTransactionGenusType) Gets aRequestTransactionListcorresponding to the given request transaction genusTypewhich does not include of genus types derived from the specifiedType.getRequestTransactionsByIds(IdList requestTransactionIds) Gets aRequestTransactionListcorresponding to the givenIdList.getRequestTransactionsByParentGenusType(Type requestTransactionGenusType) Gets aRequestTransactionListcorresponding to the given request transaction genusTypeand include any additional request transaction with genus types derived from the specifiedType.getRequestTransactionsByRecordType(Type requestTransactionRecordType) Gets aRequestTransactionListcontaining the given request transaction recordType.getRequestTransactionsByRequest(Id requestId) Gets a list of request transactions by request.getRequestTransactionsForBroker(Id brokerId) Gets a list of request transactions for a bropker.getRequestTransactionsForBrokerOnDate(Id brokerId, DateTime from, DateTime to) Gets a list of request transactions for a broker and effective beginning in the date range.getRequestTransactionsForSubmitter(Id resourceId) Gets a list of request transactions for a submitter in the request transaction.getRequestTransactionsForSubmitterAndBroker(Id resourceId, Id brokerId) Gets a list of request transactions for a submitter and broker.getRequestTransactionsForSubmitterAndBrokerOnDate(Id resourceId, Id brokerId, DateTime from, DateTime to) Gets a list of request transactions for a submitter and broker and effective beginning in the date range.getRequestTransactionsForSubmitterOnDate(Id resourceId, DateTime from, DateTime to) Gets a list of request transactions for a submitter and effective beginning in the date range.getRequestTransactionsOnDate(DateTime from, DateTime to) Gets a list of request transactions effective beginning in the date range.voidAll request transactions of any effective dates are returned by methods in this session.voidThe returns from the lookup methods may omit or translate elements based on this session, such as authorization, and not result in an error.voidOnly request transactions whose effective dates are current are returned by methods in this session.voidFederates the view for methods in this session.voidIsolates the view for methods in this session.voidA complete view of theRequestTransactionreturns is desired.Methods inherited from interface OsidSession
closeMethods inherited from interface OsidSession
getAuthenticatedAgent, getAuthenticatedAgentId, getClockRate, getDate, getEffectiveAgent, getEffectiveAgentId, getFormatType, getLocale, isAuthenticated, startTransaction, supportsTransactionsModifier and TypeMethodDescriptionGets the agent authenticated to this session.Gets theIdof the agent authenticated to this session.Gets the rate of the service clock.getDate()Gets the service date which may be the current date or the effective date in which this session exists.Gets the effective agent in use by this session.Gets theIdof the effective agent in use by this session.Gets theDisplayTextformatTypepreference in effect for this session.Gets the locale indicating the localization preferences in effect for this session.booleanTests if an agent is authenticated to this session.Starts a new transaction for this sesson.booleanTests for the availability of transactions.
-
Method Details
-
getDistributorId
Id getDistributorId()Gets theDistributorIdassociated with this session.- Returns:
- the
Distributor Idassociated with this session - Compliance:
mandatory- This method must be implemented.
-
getDistributor
Gets theDistributorassociated with this session.- Returns:
- the distributor
- Throws:
OperationFailedException- unable to complete requestPermissionDeniedException- authorization failure- Compliance:
mandatory- This method must be implemented.
-
canLookupRequestTransactions
boolean canLookupRequestTransactions()Tests if this user can performRequestTransactionlookups. 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 aPERMISSION_DENIED. This is intended as a hint to an application that may opt not to offer lookup operations to unauthorized users.- Returns:
falseif lookup methods are not authorized,trueotherwise- Compliance:
mandatory- This method must be implemented.
-
useComparativeRequestTransactionView
void useComparativeRequestTransactionView()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.- Compliance:
mandatory- This method is must be implemented.
-
usePlenaryRequestTransactionView
void usePlenaryRequestTransactionView()A complete view of theRequestTransactionreturns 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.- Compliance:
mandatory- This method is must be implemented.
-
useFederatedDistributorView
void useFederatedDistributorView()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.- Compliance:
mandatory- This method is must be implemented.
-
useIsolatedDistributorView
void useIsolatedDistributorView()Isolates the view for methods in this session. An isolated view restricts lookups to this distributor only.- Compliance:
mandatory- This method is must be implemented.
-
useEffectiveRequestTransactionView
void useEffectiveRequestTransactionView()Only request transactions whose effective dates are current are returned by methods in this session.- Compliance:
mandatory- This method is must be implemented.
-
useAnyEffectiveRequestTransactionView
void useAnyEffectiveRequestTransactionView()All request transactions of any effective dates are returned by methods in this session.- Compliance:
mandatory- This method is must be implemented.
-
getRequestTransaction
RequestTransaction getRequestTransaction(Id requestTransactionId) throws NotFoundException, OperationFailedException, PermissionDeniedException Gets theRequestTransactionspecified by itsId. In plenary mode, the exactIdis found or aNOT_FOUNDresults. Otherwise, the returnedRequestTransactionmay have a differentIdthan requested, such as the case where a duplicateIdwas assigned to aRequestTransactionand 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.- Parameters:
requestTransactionId-IdofRequestTransaction- Returns:
- the request transaction
- Throws:
NotFoundException-requestTransactionIdnot foundNullArgumentException-requestTransactionIdisnullOperationFailedException- unable to complete requestPermissionDeniedException- authorization failure- Compliance:
mandatory- This method is must be implemented.
-
getRequestTransactionsByIds
RequestTransactionList getRequestTransactionsByIds(IdList requestTransactionIds) throws NotFoundException, OperationFailedException, PermissionDeniedException Gets aRequestTransactionListcorresponding to the givenIdList. In plenary mode, the returned list contains all of the request transaction specified in theIdlist, in the order of the list, including duplicates, or an error results if anIdin the supplied list is not found or inaccessible. Otherwise, inaccessibleRequestTransactionsmay 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.- Parameters:
requestTransactionIds- the list ofIdsto retrieve- Returns:
- the returned
RequestTransactionlist - Throws:
NotFoundException- anIdwas not foundNullArgumentException-requestTransactionIdsisnullOperationFailedException- unable to complete requestPermissionDeniedException- authorization failure- Compliance:
mandatory- This method must be implemented.
-
getRequestTransactionsByGenusType
RequestTransactionList getRequestTransactionsByGenusType(Type requestTransactionGenusType) throws OperationFailedException, PermissionDeniedException Gets aRequestTransactionListcorresponding to the given request transaction genusTypewhich does not include of genus types derived from the specifiedType. 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.- Parameters:
requestTransactionGenusType- a request transaction genus type- Returns:
- the returned
RequestTransactionlist - Throws:
NullArgumentException-requestTransactionGenusTypeisnullOperationFailedException- unable to complete requestPermissionDeniedException- authorization failure- Compliance:
mandatory- This method must be implemented.
-
getRequestTransactionsByParentGenusType
RequestTransactionList getRequestTransactionsByParentGenusType(Type requestTransactionGenusType) throws OperationFailedException, PermissionDeniedException Gets aRequestTransactionListcorresponding to the given request transaction genusTypeand include any additional request transaction with genus types derived from the specifiedType. 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.- Parameters:
requestTransactionGenusType- a request transaction genus type- Returns:
- the returned
RequestTransactionlist - Throws:
NullArgumentException-requestTransactionGenusTypeisnullOperationFailedException- unable to complete requestPermissionDeniedException- authorization failure- Compliance:
mandatory- This method must be implemented.
-
getRequestTransactionsByRecordType
RequestTransactionList getRequestTransactionsByRecordType(Type requestTransactionRecordType) throws OperationFailedException, PermissionDeniedException Gets aRequestTransactionListcontaining the given request transaction recordType. 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.- Parameters:
requestTransactionRecordType- a request transaction record type- Returns:
- the returned
RequestTransactionlist - Throws:
NullArgumentException-requestTransactionRecordTypeisnullOperationFailedException- unable to complete requestPermissionDeniedException- authorization failure- Compliance:
mandatory- This method must be implemented.
-
getRequestTransactionsByRequest
RequestTransactionList getRequestTransactionsByRequest(Id requestId) throws OperationFailedException, PermissionDeniedException 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.- Parameters:
requestId- a requestId- Returns:
- the returned
RequestTransactionlist - Throws:
NullArgumentException-requestIdisnullOperationFailedException- unable to complete requestPermissionDeniedException- authorization failure- Compliance:
mandatory- This method must be implemented.
-
getRequestTransactionsOnDate
RequestTransactionList getRequestTransactionsOnDate(DateTime from, DateTime to) throws OperationFailedException, PermissionDeniedException 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.- Parameters:
from- start of date rangeto- end of date range- Returns:
- the returned
RequestTransactionlist - Throws:
InvalidArgumentException-fromis greater thantoNullArgumentException-fromortoisnullOperationFailedException- unable to complete requestPermissionDeniedException- authorization failure- Compliance:
mandatory- This method must be implemented.
-
getRequestTransactionsForSubmitter
RequestTransactionList getRequestTransactionsForSubmitter(Id resourceId) throws OperationFailedException, PermissionDeniedException 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.- Parameters:
resourceId- a resourceId- Returns:
- the returned
RequestTransactionlist - Throws:
NullArgumentException-resourceIdisnullOperationFailedException- unable to complete requestPermissionDeniedException- authorization failure- Compliance:
mandatory- This method must be implemented.
-
getRequestTransactionsForSubmitterOnDate
RequestTransactionList getRequestTransactionsForSubmitterOnDate(Id resourceId, DateTime from, DateTime to) throws OperationFailedException, PermissionDeniedException 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.- Parameters:
resourceId- a resourceIdfrom- start of date rangeto- end of date range- Returns:
- the returned
RequestTransactionlist - Throws:
InvalidArgumentException-fromis greater thantoNullArgumentException-resourceId, fromortoisnullOperationFailedException- unable to complete requestPermissionDeniedException- authorization failure- Compliance:
mandatory- This method must be implemented.
-
getRequestTransactionsForBroker
RequestTransactionList getRequestTransactionsForBroker(Id brokerId) throws OperationFailedException, PermissionDeniedException 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.- Parameters:
brokerId- a brokerId- Returns:
- the returned
RequestTransactionlist - Throws:
NullArgumentException-brokerIdisnullOperationFailedException- unable to complete requestPermissionDeniedException- authorization failure- Compliance:
mandatory- This method must be implemented.
-
getRequestTransactionsForBrokerOnDate
RequestTransactionList getRequestTransactionsForBrokerOnDate(Id brokerId, DateTime from, DateTime to) throws OperationFailedException, PermissionDeniedException 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.- Parameters:
brokerId- a brokerIdfrom- start of date rangeto- end of date range- Returns:
- the returned
RequestTransactionlist - Throws:
InvalidArgumentException-fromis greater thantoNullArgumentException-brokerId, fromortoisnullOperationFailedException- unable to complete requestPermissionDeniedException- authorization failure- Compliance:
mandatory- This method must be implemented.
-
getRequestTransactionsForSubmitterAndBroker
RequestTransactionList getRequestTransactionsForSubmitterAndBroker(Id resourceId, Id brokerId) throws OperationFailedException, PermissionDeniedException 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.- Parameters:
resourceId- a resourceIdbrokerId- a brokerId- Returns:
- the returned
RequestTransactionlist - Throws:
NullArgumentException-resourceIdorbrokerIdisnullOperationFailedException- unable to complete requestPermissionDeniedException- authorization failure- Compliance:
mandatory- This method must be implemented.
-
getRequestTransactionsForSubmitterAndBrokerOnDate
RequestTransactionList getRequestTransactionsForSubmitterAndBrokerOnDate(Id resourceId, Id brokerId, DateTime from, DateTime to) throws OperationFailedException, PermissionDeniedException 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.- Parameters:
resourceId- a resourceIdbrokerId- a brokerIdfrom- start of date rangeto- end of date range- Returns:
- the returned
RequestTransactionlist - Throws:
InvalidArgumentException-fromis greater thantoNullArgumentException-resourceId, brokerId, fromortoisnullOperationFailedException- unable to complete requestPermissionDeniedException- authorization failure- Compliance:
mandatory- This method must be implemented.
-
getRequestTransactions
RequestTransactionList getRequestTransactions() throws OperationFailedException, PermissionDeniedExceptionGets allRequestTransactions. 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.- Returns:
- a list of
RequestTransaction - Throws:
OperationFailedException- unable to complete requestPermissionDeniedException- authorization failure- Compliance:
mandatory- This method must be implemented.
-