Interface StepSearch
- All Superinterfaces:
Extensible, OsidCondition, OsidSearch, Suppliable
The search interface for governing step searches.
-
Method Summary
Modifier and TypeMethodDescriptiongetStepSearchRecord(Type stepSearchRecordType) Gets the step search record corresponding to the given step search recordType.voidorderStepResults(StepSearchOrder stepSearchOrder) Specify an ordering to the search results.voidsearchAmongSteps(IdList stepIds) Execute this search among the given list of steps.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
-
searchAmongSteps
Execute this search among the given list of steps.- Parameters:
stepIds- list of steps- Throws:
NullArgumentException-stepIdsisnull- Compliance:
mandatory- This method must be implemented.
-
orderStepResults
Specify an ordering to the search results.- Parameters:
stepSearchOrder- step search order- Throws:
NullArgumentException-stepSearchOrderisnullUnsupportedException-stepSearchOrderis not of this service- Compliance:
mandatory- This method must be implemented.
-
getStepSearchRecord
Gets the step search record corresponding to the given step search recordType. This method is used to retrieve an object implementing the requested record.- Parameters:
stepSearchRecordType- a step search record type- Returns:
- the step search record
- Throws:
NullArgumentException-stepSearchRecordTypeisnullOperationFailedException- unable to complete requestUnsupportedException-hasRecordType(stepSearchRecordType)isfalse- Compliance:
mandatory- This method must be implemented.
-