public interface AuditSearch extends OsidSearch
The search interface for governing audit searches.
Modifier and Type | Method and Description |
---|---|
AuditSearchRecord |
getAuditSearchRecord(Type auditSearchRecordType)
Gets the audit search record corresponding to the given audit search
record
Type. |
void |
orderAuditResults(AuditSearchOrder auditSearchOrder)
Specify an ordering to the search results.
|
void |
searchAmongAudits(IdList auditIds)
Execute this search among the given list of audits.
|
limitResultSet
getRecordTypes, hasRecordType
void searchAmongAudits(IdList auditIds)
auditIds
- list of auditsNullArgumentException
- auditIds
is
null
mandatory
- This method must be implemented. void orderAuditResults(AuditSearchOrder auditSearchOrder)
auditSearchOrder
- audit search orderNullArgumentException
- auditSearchOrder
is null
UnsupportedException
- auditSearchOrder
is not of this servicemandatory
- This method must be implemented. AuditSearchRecord getAuditSearchRecord(Type auditSearchRecordType) throws OperationFailedException
Type.
This method is used to retrieve an object
implementing the requested record.auditSearchRecordType
- an audit search record typeNullArgumentException
- auditSearchRecordType
is null
OperationFailedException
- unable to complete requestUnsupportedException
-
hasRecordType(auditSearchRecordType)
is false
mandatory
- This method must be implemented.