Interface CheckSearch
- All Superinterfaces:
Extensible, OsidCondition, OsidSearch, Suppliable
The search interface for governing check searches.
-
Method Summary
Modifier and TypeMethodDescriptiongetCheckSearchRecord(Type checkSearchRecordType) Gets the check search record corresponding to the given check search recordType.voidorderCheckResults(CheckSearchOrder checkSearchOrder) Specify an ordering to the search results.voidsearchAmongChecks(IdList checkIds) Execute this search among the given list of checks.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
-
searchAmongChecks
Execute this search among the given list of checks.- Parameters:
checkIds- list of checks- Throws:
NullArgumentException-checkIdsisnull- Compliance:
mandatory- This method must be implemented.
-
orderCheckResults
Specify an ordering to the search results.- Parameters:
checkSearchOrder- check search order- Throws:
NullArgumentException-checkSearchOrderisnullUnsupportedException-checkSearchOrderis not of this service- Compliance:
mandatory- This method must be implemented.
-
getCheckSearchRecord
CheckSearchRecord getCheckSearchRecord(Type checkSearchRecordType) throws OperationFailedException, PermissionDeniedException Gets the check search record corresponding to the given check search recordType. This method is used to retrieve an object implementing the requested record.- Parameters:
checkSearchRecordType- a check search record type- Returns:
- the check search record
- Throws:
NullArgumentException-checkSearchRecordTypeisnullOperationFailedException- unable to complete requestPermissionDeniedException- authorization failure occurredUnsupportedException-hasRecordType(checkSearchRecordType)isfalse- Compliance:
mandatory- This method must be implemented.
-