public interface AuctionProcessorLookupSession extends OsidSession
This session provides methods for retrieving AuctionProcessors.
This session defines views that offer differing behaviors when retrieving multiple objects.
AuctionProcessors
with the
AuctionProcessorAdminSession.
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 the methods in this session.
Modifier and Type | Method and Description |
---|---|
boolean |
canLookupAuctionProcessors()
Tests if this user can perform
AuctionProcessors
lookups. |
AuctionHouse |
getAuctionHouse()
Gets the
AuctionHouse associated with this session. |
Id |
getAuctionHouseId()
Gets the
AuctionHouse Id associated with
this session. |
AuctionProcessor |
getAuctionProcessor(Id auctionProcessorId)
Gets the
AuctionProcessor specified by its Id. |
AuctionProcessorList |
getAuctionProcessors()
Gets all
AuctionProcessors. |
AuctionProcessorList |
getAuctionProcessorsByGenusType(Type auctionProcessorGenusType)
Gets an
AuctionProcessorList corresponding to the given
auction processor genus Type which does not include
auction processor of genus types derived from the specified
Type. |
AuctionProcessorList |
getAuctionProcessorsByIds(IdList auctionProcessorIds)
Gets an
AuctionProcessorList corresponding to the given
IdList. |
AuctionProcessorList |
getAuctionProcessorsByParentGenusType(Type auctionProcessorGenusType)
Gets an
AuctionProcessorList corresponding to the given
auction processor genus Type and include any additional
auction processor with genus types derived from the specified
Type. |
AuctionProcessorList |
getAuctionProcessorsByRecordType(Type auctionProcessorRecordType)
Gets an
AuctionProcessorList containing the given
auction processor record Type. |
void |
useActiveAuctionProcessorView()
Only active auction processors are returned by methods in this
session.
|
void |
useAnyStatusAuctionProcessorView()
All active and inactive auction processors are returned by methods in
this session.
|
void |
useComparativeAuctionProcessorView()
The returns from the lookup methods may omit or translate elements
based on this session, such as authorization, and not result in an
error.
|
void |
useFederatedAuctionHouseView()
Federates the view for methods in this session.
|
void |
useIsolatedAuctionHouseView()
Isolates the view for methods in this session.
|
void |
usePlenaryAuctionProcessorView()
A complete view of the
AuctionProcessor returns is
desired. |
getAuthenticatedAgent, getAuthenticatedAgentId, getClockRate, getDate, getEffectiveAgent, getEffectiveAgentId, getFormatType, getLocale, isAuthenticated, startTransaction, supportsTransactions
close
Id getAuctionHouseId()
AuctionHouse
Id
associated with
this session. AuctionHouse Id
associated with this
sessionmandatory
- This method must be implemented. AuctionHouse getAuctionHouse() throws OperationFailedException, PermissionDeniedException
AuctionHouse
associated with this session.OperationFailedException
- unable to complete requestPermissionDeniedException
- authorization failuremandatory
- This method must be implemented. boolean canLookupAuctionProcessors()
AuctionProcessors
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. false
if lookup methods are not authorized,
true
otherwisemandatory
- This method must be implemented. void useComparativeAuctionProcessorView()
mandatory
- This method is must be implemented. void usePlenaryAuctionProcessorView()
AuctionProcessor
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.mandatory
- This method is must be implemented. void useFederatedAuctionHouseView()
mandatory
- This method is must be implemented. void useIsolatedAuctionHouseView()
mandatory
- This method is must be implemented. void useActiveAuctionProcessorView()
mandatory
- This method is must be implemented. void useAnyStatusAuctionProcessorView()
mandatory
- This method is must be implemented. AuctionProcessor getAuctionProcessor(Id auctionProcessorId) throws NotFoundException, OperationFailedException, PermissionDeniedException
AuctionProcessor
specified by its Id.
In plenary mode, the exact Id
is found
or a NOT_FOUND
results. Otherwise, the returned
AuctionProcessor
may have a different Id
than
requested, such as the case where a duplicate Id
was
assigned to an AuctionProcessor
and retained for
compatibility.
In active mode, auction processors are returned that are currently
active. In any status mode, active and inactive auction processors are
returned.auctionProcessorId
- Id
of the
AuctionProcessor
NotFoundException
- auctionProcessorId
not foundNullArgumentException
- auctionProcessorId
is null
OperationFailedException
- unable to complete requestPermissionDeniedException
- authorization failuremandatory
- This method is must be implemented. AuctionProcessorList getAuctionProcessorsByIds(IdList auctionProcessorIds) throws NotFoundException, OperationFailedException, PermissionDeniedException
AuctionProcessorList
corresponding to the given
IdList.
In plenary mode, the returned list contains all of the
auction processor 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 AuctionProcessors
may be
omitted from the list and may present the elements in any order
including returning a unique set.
In active mode, auction processors are returned that are currently
active. In any status mode, active and inactive auction processors are
returned.auctionProcessorIds
- the list of Ids
to retrieve AuctionProcessor
listNotFoundException
- an Id was
not foundNullArgumentException
- auctionProcessorIds
is null
OperationFailedException
- unable to complete requestPermissionDeniedException
- authorization failuremandatory
- This method must be implemented. AuctionProcessorList getAuctionProcessorsByGenusType(Type auctionProcessorGenusType) throws OperationFailedException, PermissionDeniedException
AuctionProcessorList
corresponding to the given
auction processor genus Type
which does not include
auction processor of genus types derived from the specified
Type.
In plenary mode, the returned list contains all known
auction processor or an error results. Otherwise, the returned list
may contain only those auction processor that are accessible through
this session.
In active mode, auction processors are returned that are currently
active. In any status mode, active and inactive auction processors are
returned.auctionProcessorGenusType
- an auction processor genus type AuctionProcessor
listNullArgumentException
-
auctionProcessorGenusType
is null
OperationFailedException
- unable to complete requestPermissionDeniedException
- authorization failuremandatory
- This method must be implemented. AuctionProcessorList getAuctionProcessorsByParentGenusType(Type auctionProcessorGenusType) throws OperationFailedException, PermissionDeniedException
AuctionProcessorList
corresponding to the given
auction processor genus Type
and include any additional
auction processor with genus types derived from the specified
Type.
In plenary mode, the returned list contains all known
auction processor or an error results. Otherwise, the returned list
may contain only those auction processor that are accessible through
this session.
In active mode, auction processors are returned that are currently
active. In any status mode, active and inactive auction processors are
returned.auctionProcessorGenusType
- an auction processor genus type AuctionProcessor
listNullArgumentException
-
auctionProcessorGenusType
is null
OperationFailedException
- unable to complete requestPermissionDeniedException
- authorization failuremandatory
- This method must be implemented. AuctionProcessorList getAuctionProcessorsByRecordType(Type auctionProcessorRecordType) throws OperationFailedException, PermissionDeniedException
AuctionProcessorList
containing the given
auction processor record Type.
In plenary mode, the returned list contains all known
auction processor or an error results. Otherwise, the returned list
may contain only those auction processor that are accessible through
this session.
In active mode, auction processors are returned that are currently
active. In any status mode, active and inactive auction processors are
returned.auctionProcessorRecordType
- an auction processor record type AuctionProcessor
listNullArgumentException
-
auctionProcessorRecordType
is null
OperationFailedException
- unable to complete requestPermissionDeniedException
- authorization failuremandatory
- This method must be implemented. AuctionProcessorList getAuctionProcessors() throws OperationFailedException, PermissionDeniedException
AuctionProcessors.
In plenary mode, the returned list contains all known auction
processor or an error results. Otherwise, the returned list may
contain only those auction processor that are accessible through this
session.
In active mode, auction processors are returned that are currently
active. In any status mode, active and inactive auction processors are
returned. AuctionProcessor
listOperationFailedException
- unable to complete requestPermissionDeniedException
- authorization failuremandatory
- This method must be implemented.