Interface ConfigurationSearch
- All Superinterfaces:
Extensible, OsidCondition, OsidSearch, Suppliable
The search interface to query a configuration.
-
Method Summary
Modifier and TypeMethodDescriptiongetConfigurationSearchRecord(Type configurationSearchRecordType) Gets the configuration search record corresponding to the given configuration search recordType.This method is used to retrieve an object implementing the requested record.voidorderConfigurationResults(ConfigurationSearchOrder configurationSearchOrder) Specify an ordering to the search results.voidsearchAmongConfigurations(IdList configurationIds) Execute this search among the given list of configurations.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
-
searchAmongConfigurations
Execute this search among the given list of configurations.- Parameters:
configurationIds- list of configurations- Throws:
NullArgumentException-configurationIdsisnull- Compliance:
mandatory- This method must be implemented.
-
orderConfigurationResults
Specify an ordering to the search results.- Parameters:
configurationSearchOrder- configuration search order- Throws:
NullArgumentException-configurationSearchOrderisnullUnsupportedException-configurationSearchOrderis not of this service- Compliance:
mandatory- This method must be implemented.
-
getConfigurationSearchRecord
ConfigurationSearchRecord getConfigurationSearchRecord(Type configurationSearchRecordType) throws OperationFailedException Gets the configuration search record corresponding to the given configuration search recordType.This method is used to retrieve an object implementing the requested record.- Parameters:
configurationSearchRecordType- a configuration search record type- Returns:
- the configuration search record
- Throws:
NullArgumentException-configurationSearchRecordTypeisnullOperationFailedException- unable to complete requestUnsupportedException-hasRecordType(configurationSearchRecordType)isfalse- Compliance:
mandatory- This method must be implemented.
-