public interface QueueSearch extends OsidSearch
The search interface for governing queue searches.
Modifier and Type | Method and Description |
---|---|
QueueSearchRecord |
getQueueSearchRecord(Type queueSearchRecordType)
Gets the queue search record corresponding to the given queue search
record
Type. |
void |
orderQueueResults(QueueSearchOrder queueSearchOrder)
Specify an ordering to the search results.
|
void |
searchAmongQueues(IdList queueIds)
Execute this search among the given list of queues.
|
limitResultSet
getRecordTypes, hasRecordType
void searchAmongQueues(IdList queueIds)
queueIds
- list of queuesNullArgumentException
- queueIds
is
null
mandatory
- This method must be implemented. void orderQueueResults(QueueSearchOrder queueSearchOrder)
queueSearchOrder
- queue search orderNullArgumentException
- queueSearchOrder
is null
UnsupportedException
- queueSearchOrder
is not of this servicemandatory
- This method must be implemented. QueueSearchRecord getQueueSearchRecord(Type queueSearchRecordType) throws OperationFailedException
Type.
This method is used to retrieve an object
implementing the requested record.queueSearchRecordType
- a queue search record typeNullArgumentException
- queueSearchRecordType
is null
OperationFailedException
- unable to complete requestUnsupportedException
-
hasRecordType(queueSearchRecordType)
is false
mandatory
- This method must be implemented.