Interface AuctionHouseSearch
- All Superinterfaces:
Extensible, OsidCondition, OsidSearch, Suppliable
The search interface for governing auction house searches.
-
Method Summary
Modifier and TypeMethodDescriptiongetAuctionHouseSearchRecord(Type auctionHouseSearchRecordType) Gets the auction house search record corresponding to the given auction house search recordType.This method is used to retrieve an object implementing the requested record.voidorderAuctionHouseResults(AuctionHouseSearchOrder auctionHouseSearchOrder) Specify an ordering to the search results.voidsearchAmongAuctionHouses(IdList auctionHouseIds) Execute this search among the given list of auction houses.Methods inherited from interface Extensible
getRecordTypes, hasRecordTypeModifier and TypeMethodDescriptionGets the record types available in this object.booleanhasRecordType(Type recordType) Tests if this object supports the given recordType.Methods inherited from interface OsidSearch
limitResultSetModifier and TypeMethodDescriptionvoidlimitResultSet(long start, long end) By default, searches return all matching results.
-
Method Details
-
searchAmongAuctionHouses
Execute this search among the given list of auction houses.- Parameters:
auctionHouseIds- list of auction houses- Throws:
NullArgumentException-auctionHouseIdsisnull- Compliance:
mandatory- This method must be implemented.
-
orderAuctionHouseResults
Specify an ordering to the search results.- Parameters:
auctionHouseSearchOrder- auctionHouse search order- Throws:
NullArgumentException-auctionHouseSearchOrderisnullUnsupportedException-auctionHouseSearchOrderis not of this service- Compliance:
mandatory- This method must be implemented.
-
getAuctionHouseSearchRecord
AuctionHouseSearchRecord getAuctionHouseSearchRecord(Type auctionHouseSearchRecordType) throws OperationFailedException Gets the auction house search record corresponding to the given auction house search recordType.This method is used to retrieve an object implementing the requested record.- Parameters:
auctionHouseSearchRecordType- an auction house search record type- Returns:
- the auction house search record
- Throws:
NullArgumentException-auctionHouseSearchRecordTypeisnullOperationFailedException- unable to complete requestUnsupportedException-hasRecordType(auctionHouseSearchRecordType)isfalse- Compliance:
mandatory- This method must be implemented.
-