Class AbstractExchangeObject
- All Implemented Interfaces:
ExchangeObject
,Serializable
- Direct Known Subclasses:
Attribute
,EntityExchangeObject
,Prices
,Translation
EntityExchangeObject
instead.
The intention for this is to be used on any entities that will be passed to APIs for persistence or perhaps a class containing a group of entities.
If the class is just a property of an entity, this is unneeded. NOTE: If the previous statement
is true, re-consider if you need to define a class at all. This service just passes data through
as-is without needing to explicitly define every property on an entity. Unless you need to
perform some kind of action using the data, you do not need to define a class.
If you need a custom complex data structure, it is recommended that you extend an existing entity
and define the relationship there rather than use the
getCustomProperties()
, which makes use of @JsonAnyGetter
and JsonAnySetter
.
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected boolean
boolean
int
hashCode()
boolean
void
setCorrelationId
(String correlationId) void
setCustomProperties
(Map<String, Object> customProperties) Any custom properties from extensions that should just be passed through.void
setCustomProperty
(String key, Object value) void
setNewlyCreated
(boolean newlyCreated) Set to true if the object is newly created.void
setParentCorrelationId
(String parentCorrelationId) toString()
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface com.broadleafcommerce.dataexchange.domain.ExchangeObject
getContextState, getId, setContextState, setId
-
Constructor Details
-
AbstractExchangeObject
public AbstractExchangeObject()
-
-
Method Details
-
setCustomProperty
-
getCustomProperties
-
getParentCorrelationId
- Specified by:
getParentCorrelationId
in interfaceExchangeObject
-
getCorrelationId
- Specified by:
getCorrelationId
in interfaceExchangeObject
-
isNewlyCreated
public boolean isNewlyCreated()- Specified by:
isNewlyCreated
in interfaceExchangeObject
- Returns:
- true if the object is newly created. Note that this is not always applicable to all objects.
-
setParentCorrelationId
- Specified by:
setParentCorrelationId
in interfaceExchangeObject
-
setCorrelationId
- Specified by:
setCorrelationId
in interfaceExchangeObject
-
setCustomProperties
Any custom properties from extensions that should just be passed through. -
setNewlyCreated
public void setNewlyCreated(boolean newlyCreated) Description copied from interface:ExchangeObject
Set to true if the object is newly created. This may not be applicable to all objects.- Specified by:
setNewlyCreated
in interfaceExchangeObject
- Parameters:
newlyCreated
- true if the object is newly created
-
equals
-
canEqual
-
hashCode
public int hashCode() -
toString
-