Interface SequenceRuleSearch
- All Superinterfaces:
Extensible, OsidCondition, OsidSearch, Suppliable
The search interface for governing sequence rule searches.
-
Method Summary
Modifier and TypeMethodDescriptiongetSequenceRuleSearchRecord(Type sequenceRuleSearchRecordType) Gets the sequence rule search record corresponding to the given sequence rule search recordType.This method is used to retrieve an object implementing the requested record.voidorderSequenceRuleResults(SequenceRuleSearchOrder sequenceRuleSearchOrder) Specify an ordering to the search results.voidsearchAmongSequenceRules(IdList bankIds) Execute this search among the given list of sequence rules.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
-
searchAmongSequenceRules
Execute this search among the given list of sequence rules.- Parameters:
bankIds- list of sequence rules- Throws:
NullArgumentException-bankIdsisnull- Compliance:
mandatory- This method must be implemented.
-
orderSequenceRuleResults
Specify an ordering to the search results.- Parameters:
sequenceRuleSearchOrder- sequence rule search order- Throws:
NullArgumentException-sequenceRuleSearchOrderisnullUnsupportedException-sequenceRuleSearchOrderis not of this service- Compliance:
mandatory- This method must be implemented.
-
getSequenceRuleSearchRecord
SequenceRuleSearchRecord getSequenceRuleSearchRecord(Type sequenceRuleSearchRecordType) throws OperationFailedException Gets the sequence rule search record corresponding to the given sequence rule search recordType.This method is used to retrieve an object implementing the requested record.- Parameters:
sequenceRuleSearchRecordType- a sequence rule search record type- Returns:
- the sequence rule search record
- Throws:
NullArgumentException-sequenceRuleSearchRecordTypeisnullOperationFailedException- unable to complete requestUnsupportedException-hasRecordType(sequenceRuleSearchRecordType)isfalse- Compliance:
mandatory- This method must be implemented.
-