Interface InstallationSearch
- All Superinterfaces:
Extensible, OsidCondition, OsidSearch, Suppliable
InstallationSearch defines the interface for specifying
installation search options.
-
Method Summary
Modifier and TypeMethodDescriptiongetInstallationSearchRecord(Type installationSearchRecordType) Gets the installation search record corresponding to the given installation search recordType.This method is used to retrieve an object implementing the requested record.voidorderInstallationResults(InstallationSearchOrder installationSearchOrder) Specify an ordering to the search results.voidsearchAmongInstallations(IdList installationIds) Execute this search among the given list of installations.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
-
searchAmongInstallations
Execute this search among the given list of installations.- Parameters:
installationIds- list of installations- Throws:
NullArgumentException-installationIdsisnull- Compliance:
mandatory- This method must be implemented.
-
orderInstallationResults
Specify an ordering to the search results.- Parameters:
installationSearchOrder- installation search order- Throws:
NullArgumentException-installationSearchOrderisnullUnsupportedException-installationSearchOrderis not of this service- Compliance:
mandatory- This method must be implemented.
-
getInstallationSearchRecord
InstallationSearchRecord getInstallationSearchRecord(Type installationSearchRecordType) throws OperationFailedException Gets the installation search record corresponding to the given installation search recordType.This method is used to retrieve an object implementing the requested record.- Parameters:
installationSearchRecordType- an installation search record type- Returns:
- the installation search record
- Throws:
NullArgumentException-installationSearchRecordTypeisnullOperationFailedException- unable to complete requestUnsupportedException-hasRecordType(installationSearchRecordType)isfalse- Compliance:
mandatory- This method must be implemented.
-