Interface ChecklistSearch
- All Superinterfaces:
Extensible, OsidCondition, OsidSearch, Suppliable
The search interface for governing checklist searches.
-
Method Summary
Modifier and TypeMethodDescriptiongetChecklistSearchRecord(Type checklistSearchRecordType) Gets the checklist search record corresponding to the given checklist search recordType.voidorderChecklistResults(ChecklistSearchOrder checklistSearchOrder) Specify an ordering to the search results.voidsearchAmongChecklists(IdList checklistIds) Execute this search among the given list of checklists.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
-
searchAmongChecklists
Execute this search among the given list of checklists.- Parameters:
checklistIds- list of checklists- Throws:
NullArgumentException-checklistIdsisnull- Compliance:
mandatory- This method must be implemented.
-
orderChecklistResults
Specify an ordering to the search results.- Parameters:
checklistSearchOrder- checklist search order- Throws:
NullArgumentException-checklistSearchOrderisnullUnsupportedException-checklistSearchOrderis not of this service- Compliance:
mandatory- This method must be implemented.
-
getChecklistSearchRecord
ChecklistSearchRecord getChecklistSearchRecord(Type checklistSearchRecordType) throws OperationFailedException Gets the checklist search record corresponding to the given checklist search recordType. This method is used to retrieve an object implementing the requested record.- Parameters:
checklistSearchRecordType- a checklist search record type- Returns:
- the checklist search record
- Throws:
NullArgumentException-checklistSearchRecordTypeisnullOperationFailedException- unable to complete requestUnsupportedException-hasRecordType(checklistSearchRecordType)isfalse- Compliance:
mandatory- This method must be implemented.
-