Interface SignalSearch
- All Superinterfaces:
Extensible, OsidCondition, OsidSearch, Suppliable
The search interface for governing signal searches.
-
Method Summary
Modifier and TypeMethodDescriptiongetSignalSearchRecord(Type signalSearchRecordType) Gets the record corresponding to the given signal search recordType.voidorderSignalResults(SignalSearchOrder signalSearchOrder) Specify an ordering to the search results.voidsearchAmongSignals(IdList signalIds) Execute this search among the given list of signals.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
-
searchAmongSignals
Execute this search among the given list of signals.- Parameters:
signalIds- list of signals- Throws:
NullArgumentException-signalIdsisnull- Compliance:
mandatory- This method must be implemented.
-
orderSignalResults
Specify an ordering to the search results.- Parameters:
signalSearchOrder- signal search order- Throws:
NullArgumentException-signalSearchOrderisnullUnsupportedException-signalSearchOrderis not of this service- Compliance:
mandatory- This method must be implemented.
-
getSignalSearchRecord
SignalSearchRecord getSignalSearchRecord(Type signalSearchRecordType) throws OperationFailedException Gets the record corresponding to the given signal search recordType. This method is used to retrieve an object implementing the requested record.- Parameters:
signalSearchRecordType- a signal search record type- Returns:
- the signal search record
- Throws:
NullArgumentException-signalSearchRecordTypeisnullOperationFailedException- unable to complete requestUnsupportedException-hasRecordType(signalSearchRecordType)isfalse- Compliance:
mandatory- This method must be implemented.
-