Interface QueueProcessorSearch
- All Superinterfaces:
Extensible, OsidCondition, OsidSearch, Suppliable
The search interface for governing queue processor searches.
-
Method Summary
Modifier and TypeMethodDescriptiongetQueueProcessorSearchRecord(Type queueProcessorSearchRecordType) Gets the queue processor search record corresponding to the given queue processor search recordType.This method is used to retrieve an object implementing the requested record.voidorderQueueProcessorResults(QueueProcessorSearchOrder queueProcessorSearchOrder) Specify an ordering to the search results.voidsearchAmongQueueProcessors(IdList queueProcessorIds) Execute this search among the given list of queue 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
-
searchAmongQueueProcessors
Execute this search among the given list of queue processors.- Parameters:
queueProcessorIds- list of queue processors- Throws:
NullArgumentException-queueProcessorIdsisnull- Compliance:
mandatory- This method must be implemented.
-
orderQueueProcessorResults
Specify an ordering to the search results.- Parameters:
queueProcessorSearchOrder- queue processor search order- Throws:
NullArgumentException-queueProcessorSearchOrderisnullUnsupportedException-queueProcessorSearchOrderis not of this service- Compliance:
mandatory- This method must be implemented.
-
getQueueProcessorSearchRecord
QueueProcessorSearchRecord getQueueProcessorSearchRecord(Type queueProcessorSearchRecordType) throws OperationFailedException Gets the queue processor search record corresponding to the given queue processor search recordType.This method is used to retrieve an object implementing the requested record.- Parameters:
queueProcessorSearchRecordType- a queue processor search record type- Returns:
- the queue processor search record
- Throws:
NullArgumentException-queueProcessorSearchRecordTypeisnullOperationFailedException- unable to complete requestUnsupportedException-hasRecordType(queueProcessorSearchRecordType)isfalse- Compliance:
mandatory- This method must be implemented.
-