Interface PoolProcessorSearch
- All Superinterfaces:
Extensible, OsidCondition, OsidSearch, Suppliable
The search interface for governing pool processor searches.
-
Method Summary
Modifier and TypeMethodDescriptiongetPoolProcessorSearchRecord(Type poolProcessorSearchRecordType) Gets the pool processor search record corresponding to the given pool processor search recordType.This method is used to retrieve an object implementing the requested record.voidorderPoolProcessorResults(PoolProcessorSearchOrder poolProcessorSearchOrder) Specify an ordering to the search results.voidsearchAmongPoolProcessors(IdList poolProcessorIds) Execute this search among the given list of pool 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
-
searchAmongPoolProcessors
Execute this search among the given list of pool processors.- Parameters:
poolProcessorIds- list of pool processors- Throws:
NullArgumentException-poolProcessorIdsisnull- Compliance:
mandatory- This method must be implemented.
-
orderPoolProcessorResults
Specify an ordering to the search results.- Parameters:
poolProcessorSearchOrder- pool processor search order- Throws:
NullArgumentException-poolProcessorSearchOrderisnullUnsupportedException-poolProcessorSearchOrderis not of this service- Compliance:
mandatory- This method must be implemented.
-
getPoolProcessorSearchRecord
PoolProcessorSearchRecord getPoolProcessorSearchRecord(Type poolProcessorSearchRecordType) throws OperationFailedException Gets the pool processor search record corresponding to the given pool processor search recordType.This method is used to retrieve an object implementing the requested record.- Parameters:
poolProcessorSearchRecordType- a pool processor search record type- Returns:
- the pool processor search record
- Throws:
NullArgumentException-poolProcessorSearchRecordTypeisnullOperationFailedException- unable to complete requestUnsupportedException-hasRecordType(poolProcessorSearchRecordType)isfalse- Compliance:
mandatory- This method must be implemented.
-