Class CustomerReplicationEventListener
- java.lang.Object
-
- de.hybris.platform.servicelayer.event.impl.AbstractEventListener<CustomerReplicationEvent>
-
- de.hybris.platform.sap.orderexchange.inbound.events.CustomerReplicationEventListener
-
- All Implemented Interfaces:
java.util.EventListener,org.springframework.beans.factory.Aware,org.springframework.beans.factory.InitializingBean,org.springframework.context.ApplicationContextAware,org.springframework.context.ApplicationListener<CustomerReplicationEvent>
public class CustomerReplicationEventListener extends AbstractEventListener<CustomerReplicationEvent>
Listener for the event that a B2C customer replication was confirmed by the ERP backend system. Triggers the subsequent steps of the waiting order fulfillment processes
-
-
Constructor Summary
Constructors Constructor Description CustomerReplicationEventListener()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description B2CCustomerHelpergetB2CCustomerHelper()protected voidonEvent(CustomerReplicationEvent event)This method is called byApplicationListener.onApplicationEvent(ApplicationEvent)and processes the given event.voidsetB2CCustomerHelper(B2CCustomerHelper b2cCustomerHelper)-
Methods inherited from class de.hybris.platform.servicelayer.event.impl.AbstractEventListener
afterPropertiesSet, onApplicationEvent, setApplicationContext, setClusterService, setTenantService
-
-
-
-
Method Detail
-
getB2CCustomerHelper
public B2CCustomerHelper getB2CCustomerHelper()
-
setB2CCustomerHelper
public void setB2CCustomerHelper(B2CCustomerHelper b2cCustomerHelper)
-
onEvent
protected void onEvent(CustomerReplicationEvent event)
Description copied from class:AbstractEventListenerThis method is called byApplicationListener.onApplicationEvent(ApplicationEvent)and processes the given event.- Specified by:
onEventin classAbstractEventListener<CustomerReplicationEvent>- Parameters:
event- the event to be processed- See Also:
ApplicationListener.onApplicationEvent(ApplicationEvent)
-
-