public interface LogEntrySearch extends OsidSearch
The search interface for governing log entry searches.
Modifier and Type | Method and Description |
---|---|
LogEntrySearchRecord |
getLogEntrySearchRecord(Type logEntrySearchRecordType)
Gets the log search record corresponding to the given log entry search
record
Type. |
void |
orderLogEntryResults(LogEntrySearchOrder logEntrySearchOrder)
Specify an ordering to the search results.
|
void |
searchAmongLogEntries(IdList logEntryIds)
Execute this search among the given list of log entries.
|
limitResultSet
getRecordTypes, hasRecordType
void searchAmongLogEntries(IdList logEntryIds)
logEntryIds
- list of log entriesNullArgumentException
- logEntryIds
is
null
mandatory
- This method must be implemented. void orderLogEntryResults(LogEntrySearchOrder logEntrySearchOrder)
logEntrySearchOrder
- log entry search orderNullArgumentException
- logEntrySearchOrder
is null
UnsupportedException
- logEntrySearchOrder
is not of this servicemandatory
- This method must be implemented. LogEntrySearchRecord getLogEntrySearchRecord(Type logEntrySearchRecordType) throws OperationFailedException
Type.
This method is used to retrieve an object
implementing the requested record.logEntrySearchRecordType
- a log entry search record typeNullArgumentException
- logEntrySearchRecordType
is null
OperationFailedException
- unable to complete requestUnsupportedException
-
hasRecordType(logEntrySearchRecordType)
is
false
mandatory
- This method must be implemented.