Interface AuditProcessorSearch
- All Superinterfaces:
Extensible, OsidCondition, OsidSearch, Suppliable
The search interface for governing audit processor searches.
-
Method Summary
Modifier and TypeMethodDescriptiongetAuditProcessorSearchRecord(Type auditProcessorSearchRecordType) Gets the audit processor search record corresponding to the given audit processor search recordType.This method is used to retrieve an object implementing the requested record.voidorderAuditProcessorResults(AuditProcessorSearchOrder auditProcessorSearchOrder) Specify an ordering to the search results.voidsearchAmongAuditProcessors(IdList auditProcessorIds) Execute this search among the given list of audit processors.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
-
searchAmongAuditProcessors
Execute this search among the given list of audit processors.- Parameters:
auditProcessorIds- list of audit processors- Throws:
NullArgumentException-auditProcessorIdsisnull- Compliance:
mandatory- This method must be implemented.
-
orderAuditProcessorResults
Specify an ordering to the search results.- Parameters:
auditProcessorSearchOrder- audit processor search order- Throws:
NullArgumentException-auditProcessorSearchOrderisnullUnsupportedException-auditProcessorSearchOrderis not of this service- Compliance:
mandatory- This method must be implemented.
-
getAuditProcessorSearchRecord
AuditProcessorSearchRecord getAuditProcessorSearchRecord(Type auditProcessorSearchRecordType) throws OperationFailedException Gets the audit processor search record corresponding to the given audit processor search recordType.This method is used to retrieve an object implementing the requested record.- Parameters:
auditProcessorSearchRecordType- an audit processor search record type- Returns:
- the audit processor search record
- Throws:
NullArgumentException-auditProcessorSearchRecordTypeisnullOperationFailedException- unable to complete requestUnsupportedException-hasRecordType(auditProcessorSearchRecordType)isfalse- Compliance:
mandatory- This method must be implemented.
-