Interface RaceProcessorSearch
- All Superinterfaces:
Extensible, OsidCondition, OsidSearch, Suppliable
The search interface for governing race processor searches.
-
Method Summary
Modifier and TypeMethodDescriptiongetRaceProcessorSearchRecord(Type raceProcessorSearchRecordType) Gets the race processor search record corresponding to the given race processor search recordType.This method is used to retrieve an object implementing the requested record.voidorderRaceProcessorResults(RaceProcessorSearchOrder raceProcessorSearchOrder) Specify an ordering to the search results.voidsearchAmongRaceProcessors(IdList pollsIds) Execute this search among the given list of race processors.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
-
searchAmongRaceProcessors
Execute this search among the given list of race processors.- Parameters:
pollsIds- list of race processors- Throws:
NullArgumentException-pollsIdsisnull- Compliance:
mandatory- This method must be implemented.
-
orderRaceProcessorResults
Specify an ordering to the search results.- Parameters:
raceProcessorSearchOrder- race processor search order- Throws:
NullArgumentException-raceProcessorSearchOrderisnullUnsupportedException-raceProcessorSearchOrderis not of this service- Compliance:
mandatory- This method must be implemented.
-
getRaceProcessorSearchRecord
RaceProcessorSearchRecord getRaceProcessorSearchRecord(Type raceProcessorSearchRecordType) throws OperationFailedException Gets the race processor search record corresponding to the given race processor search recordType.This method is used to retrieve an object implementing the requested record.- Parameters:
raceProcessorSearchRecordType- a race processor search record type- Returns:
- the race processor search record
- Throws:
NullArgumentException-raceProcessorSearchRecordTypeisnullOperationFailedException- unable to complete requestUnsupportedException-hasRecordType(raceProcessorSearchRecordType)isfalse- Compliance:
mandatory- This method must be implemented.
-