Interface AuditSearch
- All Superinterfaces:
Extensible, OsidCondition, OsidSearch, Suppliable
The search interface for governing audit searches.
-
Method Summary
Modifier and TypeMethodDescriptiongetAuditSearchRecord(Type auditSearchRecordType) Gets the audit search record corresponding to the given audit search recordType.voidorderAuditResults(AuditSearchOrder auditSearchOrder) Specify an ordering to the search results.voidsearchAmongAudits(IdList auditIds) Execute this search among the given list of audits.Methods inherited from interface Extensible
getRecordTypes, hasRecordTypeModifier and TypeMethodDescriptionGets the record types available in this object.booleanhasRecordType(Type recordType) Tests if this object supports the given recordType.Methods inherited from interface OsidSearch
limitResultSetModifier and TypeMethodDescriptionvoidlimitResultSet(long start, long end) By default, searches return all matching results.
-
Method Details
-
searchAmongAudits
Execute this search among the given list of audits.- Parameters:
auditIds- list of audits- Throws:
NullArgumentException-auditIdsisnull- Compliance:
mandatory- This method must be implemented.
-
orderAuditResults
Specify an ordering to the search results.- Parameters:
auditSearchOrder- audit search order- Throws:
NullArgumentException-auditSearchOrderisnullUnsupportedException-auditSearchOrderis not of this service- Compliance:
mandatory- This method must be implemented.
-
getAuditSearchRecord
Gets the audit search record corresponding to the given audit search recordType. This method is used to retrieve an object implementing the requested record.- Parameters:
auditSearchRecordType- an audit search record type- Returns:
- the audit search record
- Throws:
NullArgumentException-auditSearchRecordTypeisnullOperationFailedException- unable to complete requestUnsupportedException-hasRecordType(auditSearchRecordType)isfalse- Compliance:
mandatory- This method must be implemented.
-