Interface DispatchProcessorSearch
- All Superinterfaces:
Extensible, OsidCondition, OsidSearch, Suppliable
The search interface for governing dispatch processor searches.
-
Method Summary
Modifier and TypeMethodDescriptiongetDispatchProcessorSearchRecord(Type dispatchProcessorSearchRecordType) Gets the dispatch processor search record corresponding to the given dispatch processor search recordType.This method is used to retrieve an object implementing the requested record.voidorderDispatchProcessorResults(DispatchProcessorSearchOrder dispatchProcessorSearchOrder) Specify an ordering to the search results.voidsearchAmongDispatchProcessors(IdList dispatchProcessorIds) Execute this search among the given list of dispatch 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
-
searchAmongDispatchProcessors
Execute this search among the given list of dispatch processors.- Parameters:
dispatchProcessorIds- list of dispatch processors- Throws:
NullArgumentException-dispatchProcessorIdsisnull- Compliance:
mandatory- This method must be implemented.
-
orderDispatchProcessorResults
Specify an ordering to the search results.- Parameters:
dispatchProcessorSearchOrder- dispatch processor search order- Throws:
NullArgumentException-dispatchProcessorSearchOrderisnullUnsupportedException-dispatchProcessorSearchOrderis not of this service- Compliance:
mandatory- This method must be implemented.
-
getDispatchProcessorSearchRecord
DispatchProcessorSearchRecord getDispatchProcessorSearchRecord(Type dispatchProcessorSearchRecordType) throws OperationFailedException Gets the dispatch processor search record corresponding to the given dispatch processor search recordType.This method is used to retrieve an object implementing the requested record.- Parameters:
dispatchProcessorSearchRecordType- a dispatch processor search record type- Returns:
- the dispatch processor search record
- Throws:
NullArgumentException-dispatchProcessorSearchRecordTypeisnullOperationFailedException- unable to complete requestUnsupportedException-hasRecordType(dispatchProcessorSearchRecordType)isfalse- Compliance:
mandatory- This method must be implemented.
-