Interface QueueSearch
- All Superinterfaces:
Extensible, OsidCondition, OsidSearch, Suppliable
The search interface for governing queue searches.
-
Method Summary
Modifier and TypeMethodDescriptiongetQueueSearchRecord(Type queueSearchRecordType) Gets the queue search record corresponding to the given queue search recordType.voidorderQueueResults(QueueSearchOrder queueSearchOrder) Specify an ordering to the search results.voidsearchAmongQueues(IdList queueIds) Execute this search among the given list of queues.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
-
searchAmongQueues
Execute this search among the given list of queues.- Parameters:
queueIds- list of queues- Throws:
NullArgumentException-queueIdsisnull- Compliance:
mandatory- This method must be implemented.
-
orderQueueResults
Specify an ordering to the search results.- Parameters:
queueSearchOrder- queue search order- Throws:
NullArgumentException-queueSearchOrderisnullUnsupportedException-queueSearchOrderis not of this service- Compliance:
mandatory- This method must be implemented.
-
getQueueSearchRecord
Gets the queue search record corresponding to the given queue search recordType. This method is used to retrieve an object implementing the requested record.- Parameters:
queueSearchRecordType- a queue search record type- Returns:
- the queue search record
- Throws:
NullArgumentException-queueSearchRecordTypeisnullOperationFailedException- unable to complete requestUnsupportedException-hasRecordType(queueSearchRecordType)isfalse- Compliance:
mandatory- This method must be implemented.
-