Interface PriceScheduleSearch
- All Superinterfaces:
Extensible, OsidCondition, OsidSearch, Suppliable
The search interface for governing price schedule searches.
-
Method Summary
Modifier and TypeMethodDescriptiongetPriceScheduleSearchRecord(Type priceScheduleSearchRecordType) Gets the price schedule search record corresponding to the given price schedule search recordType.This method is used to retrieve an object implementing the requested record.voidorderPriceScheduleResults(PriceScheduleSearchOrder priceScheduleSearchOrder) Specify an ordering to the search results.voidsearchAmongPriceSchedules(IdList priceScheduleIds) Execute this search among the given list of price schedules.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
-
searchAmongPriceSchedules
Execute this search among the given list of price schedules.- Parameters:
priceScheduleIds- list of price schedules- Throws:
NullArgumentException-priceScheduleIdsisnull- Compliance:
mandatory- This method must be implemented.
-
orderPriceScheduleResults
Specify an ordering to the search results.- Parameters:
priceScheduleSearchOrder- price schedule search order- Throws:
NullArgumentException-priceScheduleSearchOrderisnullUnsupportedException-priceScheduleSearchOrderis not of this service- Compliance:
mandatory- This method must be implemented.
-
getPriceScheduleSearchRecord
PriceScheduleSearchRecord getPriceScheduleSearchRecord(Type priceScheduleSearchRecordType) throws OperationFailedException Gets the price schedule search record corresponding to the given price schedule search recordType.This method is used to retrieve an object implementing the requested record.- Parameters:
priceScheduleSearchRecordType- a price schedule search record type- Returns:
- the price schedule search record
- Throws:
NullArgumentException-priceScheduleSearchRecordTypeisnullOperationFailedException- unable to complete requestUnsupportedException-hasRecordType(priceScheduleSearchRecordType)isfalse- Compliance:
mandatory- This method must be implemented.
-