Class FaultTolerantConverter<SOURCE,TARGET>
- java.lang.Object
-
- de.hybris.platform.converters.impl.AbstractConverter<SOURCE,TARGET>
-
- de.hybris.platform.converters.impl.AbstractPopulatingConverter<SOURCE,TARGET>
-
- de.hybris.platform.personalizationintegration.mapping.FaultTolerantConverter<SOURCE,TARGET>
-
- All Implemented Interfaces:
Populator<SOURCE,TARGET>,PopulatorList<SOURCE,TARGET>,Converter<SOURCE,TARGET>,org.springframework.beans.factory.Aware,org.springframework.beans.factory.BeanNameAware,org.springframework.beans.factory.InitializingBean,org.springframework.core.convert.converter.Converter<SOURCE,TARGET>
public class FaultTolerantConverter<SOURCE,TARGET> extends AbstractPopulatingConverter<SOURCE,TARGET>
-
-
Constructor Summary
Constructors Constructor Description FaultTolerantConverter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidpopulate(SOURCE source, TARGET target)Populate the target instance from the source instance.-
Methods inherited from class de.hybris.platform.converters.impl.AbstractPopulatingConverter
getPopulators, removePopulatorsDuplicates, setPopulators
-
Methods inherited from class de.hybris.platform.converters.impl.AbstractConverter
afterPropertiesSet, convert, convert, createFromClass, createTarget, getMyBeanName, setBeanName, setTargetClass
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface de.hybris.platform.servicelayer.dto.converter.Converter
convertAll, convertAllIgnoreExceptions, getLogger
-
-
-
-
Method Detail
-
populate
public void populate(SOURCE source, TARGET target)
Description copied from class:AbstractPopulatingConverterPopulate the target instance from the source instance. Calls a list of injected populators to populate the instance.- Specified by:
populatein interfacePopulator<SOURCE,TARGET>- Overrides:
populatein classAbstractPopulatingConverter<SOURCE,TARGET>- Parameters:
source- the source itemtarget- the target item to populate- See Also:
AbstractConverter.setTargetClass(Class)
-
-