Class DefaultSnIndexConfigurationService
- java.lang.Object
-
- de.hybris.platform.searchservices.admin.service.impl.DefaultSnIndexConfigurationService
-
- All Implemented Interfaces:
SnIndexConfigurationService
public class DefaultSnIndexConfigurationService extends java.lang.Object implements SnIndexConfigurationService
Default implementation ofSnIndexConfigurationService.
-
-
Constructor Summary
Constructors Constructor Description DefaultSnIndexConfigurationService()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<SnIndexConfiguration>getAllIndexConfigurations()Returns all the index configurations.java.util.Optional<SnIndexConfiguration>getIndexConfigurationForId(java.lang.String id)Returns the index configuration for the given id.Converter<SnIndexConfigurationModel,SnIndexConfiguration>getSnIndexConfigurationConverter()SnIndexConfigurationDaogetSnIndexConfigurationDao()voidsetSnIndexConfigurationConverter(Converter<SnIndexConfigurationModel,SnIndexConfiguration> snIndexConfigurationConverter)voidsetSnIndexConfigurationDao(SnIndexConfigurationDao snIndexConfigurationDao)
-
-
-
Method Detail
-
getAllIndexConfigurations
public java.util.List<SnIndexConfiguration> getAllIndexConfigurations()
Description copied from interface:SnIndexConfigurationServiceReturns all the index configurations.- Specified by:
getAllIndexConfigurationsin interfaceSnIndexConfigurationService- Returns:
- the index configurations
-
getIndexConfigurationForId
public java.util.Optional<SnIndexConfiguration> getIndexConfigurationForId(java.lang.String id)
Description copied from interface:SnIndexConfigurationServiceReturns the index configuration for the given id.- Specified by:
getIndexConfigurationForIdin interfaceSnIndexConfigurationService- Parameters:
id- - the id- Returns:
- the index configuration
-
getSnIndexConfigurationDao
public SnIndexConfigurationDao getSnIndexConfigurationDao()
-
setSnIndexConfigurationDao
public void setSnIndexConfigurationDao(SnIndexConfigurationDao snIndexConfigurationDao)
-
getSnIndexConfigurationConverter
public Converter<SnIndexConfigurationModel,SnIndexConfiguration> getSnIndexConfigurationConverter()
-
setSnIndexConfigurationConverter
public void setSnIndexConfigurationConverter(Converter<SnIndexConfigurationModel,SnIndexConfiguration> snIndexConfigurationConverter)
-
-