public interface EntrySearch extends OsidSearch
The search interface for governing entry searches.
Modifier and Type | Method and Description |
---|---|
EntrySearchRecord |
getEntrySearchRecord(Type entrySearchRecordType)
Gets the blog entry search record corresponding to the given entry
search record
Type. |
void |
orderEntryResults(EntrySearchOrder entrySearchOrder)
Specify an ordering to the search results.
|
void |
searchAmongEntries(IdList entryIds)
Execute this search among the given list of entries.
|
limitResultSet
getRecordTypes, hasRecordType
void searchAmongEntries(IdList entryIds)
entryIds
- list of entry Ids
NullArgumentException
- entryIds
is
null
mandatory
- This method must be implemented. void orderEntryResults(EntrySearchOrder entrySearchOrder)
entrySearchOrder
- entry search orderNullArgumentException
- entrySearchOrder
is null
UnsupportedException
- entrySearchOrder
is not of this servicemandatory
- This method must be implemented. EntrySearchRecord getEntrySearchRecord(Type entrySearchRecordType) throws OperationFailedException
Type.
This method is used to retrieve an
object implementing the requested record.entrySearchRecordType
- an entry search record typeNullArgumentException
- entrySearchRecordType
is null
OperationFailedException
- unable to complete requestUnsupportedException
-
hasRecordType(entrySearchRecordType)
is false
mandatory
- This method must be implemented.