Class SapRevenueCloudCustomerUpdateEvent
- java.lang.Object
-
- java.util.EventObject
-
- org.springframework.context.ApplicationEvent
-
- de.hybris.platform.servicelayer.event.events.AbstractEvent
-
- com.sap.hybris.saprevenuecloudcustomer.event.SapRevenueCloudCustomerUpdateEvent
-
- All Implemented Interfaces:
ClusterAwareEvent
,java.io.Serializable
public class SapRevenueCloudCustomerUpdateEvent extends AbstractEvent implements ClusterAwareEvent
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SapRevenueCloudCustomerUpdateEvent()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Customer
getCustomerJson()
boolean
publish(int sourceNodeId, int targetNodeId)
Decide whether this event should be broadcasted/received.void
setCustomerJson(Customer customerJson)
-
Methods inherited from class de.hybris.platform.servicelayer.event.events.AbstractEvent
getScope, getSource, isFromCluster, setFromCluster, setScope, toString
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface de.hybris.platform.servicelayer.event.ClusterAwareEvent
canPublish
-
-
-
-
Method Detail
-
publish
public boolean publish(int sourceNodeId, int targetNodeId)
Description copied from interface:ClusterAwareEvent
Decide whether this event should be broadcasted/received. Examples arereturn (sourceNodeId==targetNodeId );
=> will only publish to local clusterreturn true;
=> will publish to all nodesreturn (targetNodeId==14);
=> publish to dedicated node regardless of source
- Specified by:
publish
in interfaceClusterAwareEvent
- Returns:
true
if event should be published from source cluster node to target cluster node
-
getCustomerJson
public Customer getCustomerJson()
- Returns:
- the customerJson
-
setCustomerJson
public void setCustomerJson(Customer customerJson)
- Parameters:
customerJson
- the customerJson to set
-
-