Interface ParameterProcessorSearch
- All Superinterfaces:
Extensible, OsidCondition, OsidSearch, Suppliable
The search interface for governing parameter processor searches.
-
Method Summary
Modifier and TypeMethodDescriptiongetParameterProcessorSearchRecord(Type parameterProcessorSearchRecordType) Gets the parameter processor search record corresponding to the given parameter processor search recordType.voidorderParameterProcessorResults(ParameterProcessorSearchOrder parameterProcessorSearchOrder) Specify an ordering to the search results.voidsearchAmongParameterProcessors(IdList parameterProcessorIds) Execute this search among the given list of parameter 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
-
searchAmongParameterProcessors
Execute this search among the given list of parameter processors.- Parameters:
parameterProcessorIds- list of parameter processors- Throws:
NullArgumentException-parameterProcessorIdsisnull- Compliance:
mandatory- This method must be implemented.
-
orderParameterProcessorResults
Specify an ordering to the search results.- Parameters:
parameterProcessorSearchOrder- parameter processor search order- Throws:
NullArgumentException-parameterProcessorSearchOrderisnullUnsupportedException-parameterProcessorSearchOrderis not of this service- Compliance:
mandatory- This method must be implemented.
-
getParameterProcessorSearchRecord
ParameterProcessorSearchRecord getParameterProcessorSearchRecord(Type parameterProcessorSearchRecordType) throws OperationFailedException Gets the parameter processor search record corresponding to the given parameter processor search recordType. This method is used to retrieve an object implementing the requested record.- Parameters:
parameterProcessorSearchRecordType- a parameter processor search record type- Returns:
- the parameter processor search record
- Throws:
NullArgumentException-parameterProcessorSearchRecordTypeisnullOperationFailedException- unable to complete requestUnsupportedException-hasRecordType(parameterProcessorSearchRecordType)isfalse- Compliance:
mandatory- This method must be implemented.
-