public interface ReplySearch extends OsidSearch
The search interface for governing reply searches.
Modifier and Type | Method and Description |
---|---|
ReplySearchRecord |
getReplySearchRecord(Type replySearchRecordType)
Gets the reply search record corresponding to the given reply search
record
Type. |
void |
orderReplyResults(ReplySearchOrder replySearchOrder)
Specify an ordering to the search results.
|
void |
searchAmongReplies(IdList replyIds)
Execute this search among the given list of replies.
|
limitResultSet
getRecordTypes, hasRecordType
void searchAmongReplies(IdList replyIds)
replyIds
- list of repliesNullArgumentException
- replyIds
is
null
mandatory
- This method must be implemented. void orderReplyResults(ReplySearchOrder replySearchOrder)
replySearchOrder
- reply search orderNullArgumentException
- replySearchOrder
is null
UnsupportedException
- replySearchOrder
is not of this servicemandatory
- This method must be implemented. ReplySearchRecord getReplySearchRecord(Type replySearchRecordType) throws OperationFailedException
Type.
This method is used to retrieve an object
implementing the requested record .replySearchRecordType
- a reply search record typeNullArgumentException
- replySearchRecordType
is null
OperationFailedException
- unable to complete requestUnsupportedException
-
hasRecordType(replySearchRecordType)
is false
mandatory
- This method must be implemented.