Interface InquestSearch
- All Superinterfaces:
Extensible, OsidCondition, OsidSearch, Suppliable
The search interface for governing inquest searches.
-
Method Summary
Modifier and TypeMethodDescriptiongetInquestSearchRecord(Type inquestSearchRecordType) Gets the inquest search record corresponding to the given inquest search recordType.voidorderInquestResults(InquestSearchOrder inquestSearchOrder) Specify an ordering to the search results.voidsearchAmongInquests(IdList inquestIds) Execute this search among the given list of inquests.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
-
searchAmongInquests
Execute this search among the given list of inquests.- Parameters:
inquestIds- list of inquests- Throws:
NullArgumentException-inquestIdsisnull- Compliance:
mandatory- This method must be implemented.
-
orderInquestResults
Specify an ordering to the search results.- Parameters:
inquestSearchOrder- inquest search order- Throws:
NullArgumentException-inquestSearchOrderisnullUnsupportedException-inquestSearchOrderis not of this service- Compliance:
mandatory- This method must be implemented.
-
getInquestSearchRecord
InquestSearchRecord getInquestSearchRecord(Type inquestSearchRecordType) throws OperationFailedException Gets the inquest search record corresponding to the given inquest search recordType. This method is used to retrieve an object implementing the requested record.- Parameters:
inquestSearchRecordType- an inquest search record type- Returns:
- the inquest search record
- Throws:
NullArgumentException-inquestSearchRecordTypeisnullOperationFailedException- unable to complete requestUnsupportedException-hasRecordType(inquestSearchRecordType)isfalse- Compliance:
mandatory- This method must be implemented.
-