Interface BrokerProcessorSearch
- All Superinterfaces:
Extensible, OsidCondition, OsidSearch, Suppliable
The search interface for governing broker processor searches.
-
Method Summary
Modifier and TypeMethodDescriptiongetBrokerProcessorSearchRecord(Type brokerProcessorSearchRecordType) Gets the broker processor search record corresponding to the given broker processor search recordType.This method is used to retrieve an object implementing the requested record.voidorderBrokerProcessorResults(BrokerProcessorSearchOrder brokerProcessorSearchOrder) Specify an ordering to the search results.voidsearchAmongBrokerProcessors(IdList brokerProcessorIds) Execute this search among the given list of broker processors.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
-
searchAmongBrokerProcessors
Execute this search among the given list of broker processors.- Parameters:
brokerProcessorIds- list of broker processors- Throws:
NullArgumentException-brokerProcessorIdsisnull- Compliance:
mandatory- This method must be implemented.
-
orderBrokerProcessorResults
Specify an ordering to the search results.- Parameters:
brokerProcessorSearchOrder- broker processor search order- Throws:
NullArgumentException-brokerProcessorSearchOrderisnullUnsupportedException-brokerProcessorSearchOrderis not of this service- Compliance:
mandatory- This method must be implemented.
-
getBrokerProcessorSearchRecord
BrokerProcessorSearchRecord getBrokerProcessorSearchRecord(Type brokerProcessorSearchRecordType) throws OperationFailedException Gets the broker processor search record corresponding to the given broker processor search recordType.This method is used to retrieve an object implementing the requested record.- Parameters:
brokerProcessorSearchRecordType- a broker processor search record type- Returns:
- the broker processor search record
- Throws:
NullArgumentException-brokerProcessorSearchRecordTypeisnullOperationFailedException- unable to complete requestUnsupportedException-hasRecordType(brokerProcessorSearchRecordType)isfalse- Compliance:
mandatory- This method must be implemented.
-