Class CustomersListCustomerPopulator
- java.lang.Object
-
- de.hybris.platform.assistedservicefacades.customer.converters.populator.CustomersListCustomerPopulator
-
- All Implemented Interfaces:
Populator<CustomerModel,CustomerData>
public class CustomersListCustomerPopulator extends java.lang.Object implements Populator<CustomerModel,CustomerData>
Class used for populating customer's profile picture, address and recent cart information
-
-
Constructor Summary
Constructors Constructor Description CustomersListCustomerPopulator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected Converter<AddressModel,AddressData>
getAddressConverter()
protected AssistedServiceService
getAssistedServiceService()
protected BaseSiteService
getBaseSiteService()
protected CustomerAccountService
getCustomerAccountService()
protected Converter<MediaModel,ImageData>
getImageConverter()
void
populate(CustomerModel source, CustomerData target)
Populate the target instance with values from the source instance.void
setAddressConverter(Converter<AddressModel,AddressData> addressConverter)
void
setAssistedServiceService(AssistedServiceService assistedServiceService)
void
setBaseSiteService(BaseSiteService baseSiteService)
void
setCustomerAccountService(CustomerAccountService customerAccountService)
void
setImageConverter(Converter<MediaModel,ImageData> imageConverter)
-
-
-
Method Detail
-
populate
public void populate(CustomerModel source, CustomerData target)
Description copied from interface:Populator
Populate the target instance with values from the source instance.- Specified by:
populate
in interfacePopulator<CustomerModel,CustomerData>
- Parameters:
source
- the source objecttarget
- the target to fill
-
getCustomerAccountService
protected CustomerAccountService getCustomerAccountService()
-
setCustomerAccountService
public void setCustomerAccountService(CustomerAccountService customerAccountService)
-
getAddressConverter
protected Converter<AddressModel,AddressData> getAddressConverter()
-
setAddressConverter
public void setAddressConverter(Converter<AddressModel,AddressData> addressConverter)
-
getAssistedServiceService
protected AssistedServiceService getAssistedServiceService()
-
setAssistedServiceService
public void setAssistedServiceService(AssistedServiceService assistedServiceService)
-
getImageConverter
protected Converter<MediaModel,ImageData> getImageConverter()
-
setImageConverter
public void setImageConverter(Converter<MediaModel,ImageData> imageConverter)
-
getBaseSiteService
protected BaseSiteService getBaseSiteService()
-
setBaseSiteService
public void setBaseSiteService(BaseSiteService baseSiteService)
-
-