Class DetachedDataObjectInstanceVariableContainer
- java.lang.Object
-
- com.flowable.dataobject.engine.impl.runtime.DetachedDataObjectInstanceVariableContainer
-
- All Implemented Interfaces:
DataObjectInstanceVariableContainer,VariableContainer
public class DetachedDataObjectInstanceVariableContainer extends Object implements DataObjectInstanceVariableContainer
- Author:
- Filip Hrisafov
-
-
Field Summary
Fields Modifier and Type Field Description protected com.fasterxml.jackson.databind.node.ObjectNodedataprotected StringdefinitionIdprotected StringdefinitionKeyprotected Map<String,String>fieldNamesToTypeprotected StringlookupIdprotected StringtenantId
-
Constructor Summary
Constructors Constructor Description DetachedDataObjectInstanceVariableContainer(com.fasterxml.jackson.databind.node.ObjectNode data, String lookupId, String tenantId, DataObjectDefinition dataObjectDefinition, ServiceRegistryDataObjectModel objectModel)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description com.fasterxml.jackson.databind.node.ObjectNodegetData()StringgetDefinitionId()Returns the id of the master data definition this instance belongs to.StringgetDefinitionKey()Returns the key of the master data definition this instance belongs to.ObjectgetId()ObjectgetLookupId()Returns the lookup id of this data object instance, which needs to be unique only within the same data object definition and source.StringgetTenantId()The tenant id of the definition<T> TgetValue(String property, Class<T> valueType)Get a value for the givenpropertywith the givevalueTypebooleanhasValue(String property)Check whether the data object instance has the given propertyprotected <T> TnodeToValue(String property, com.fasterxml.jackson.databind.JsonNode valueNode, Class<T> valueType)Iterable<String>propertyNames()An iterable of all the names of the properties for this data object instance.<T> TremoveValue(String property, Class<T> propertyClass)voidsetId(Object id)voidsetTransientVariable(String variableName, Object variableValue)<T> voidsetValue(String property, T value)-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.flowable.dataobject.api.runtime.DataObjectInstanceVariableContainer
getBoolean, getDate, getDouble, getInteger, getLocalDate, getLong, getString, getVariable, hasVariable, removeValue, setVariable
-
-
-
-
Constructor Detail
-
DetachedDataObjectInstanceVariableContainer
public DetachedDataObjectInstanceVariableContainer(com.fasterxml.jackson.databind.node.ObjectNode data, String lookupId, String tenantId, DataObjectDefinition dataObjectDefinition, ServiceRegistryDataObjectModel objectModel)
-
-
Method Detail
-
getId
public Object getId()
- Specified by:
getIdin interfaceDataObjectInstanceVariableContainer
-
setId
public void setId(Object id)
- Specified by:
setIdin interfaceDataObjectInstanceVariableContainer
-
getLookupId
public Object getLookupId()
Description copied from interface:DataObjectInstanceVariableContainerReturns the lookup id of this data object instance, which needs to be unique only within the same data object definition and source.- Specified by:
getLookupIdin interfaceDataObjectInstanceVariableContainer- Returns:
- the lookup id of this data object, as given and used by the data source managing this data object instance
-
getDefinitionId
public String getDefinitionId()
Description copied from interface:DataObjectInstanceVariableContainerReturns the id of the master data definition this instance belongs to.- Specified by:
getDefinitionIdin interfaceDataObjectInstanceVariableContainer- Returns:
- the id of the master data definition
-
getDefinitionKey
public String getDefinitionKey()
Description copied from interface:DataObjectInstanceVariableContainerReturns the key of the master data definition this instance belongs to.- Specified by:
getDefinitionKeyin interfaceDataObjectInstanceVariableContainer- Returns:
- the key of the master data definition
-
getValue
public <T> T getValue(String property, Class<T> valueType)
Description copied from interface:DataObjectInstanceVariableContainerGet a value for the givenpropertywith the givevalueType- Specified by:
getValuein interfaceDataObjectInstanceVariableContainer- Type Parameters:
T- the type of the value- Parameters:
property- the name of the propertyvalueType- the type of the value- Returns:
- the value for the given property
-
nodeToValue
protected <T> T nodeToValue(String property, com.fasterxml.jackson.databind.JsonNode valueNode, Class<T> valueType)
-
hasValue
public boolean hasValue(String property)
Description copied from interface:DataObjectInstanceVariableContainerCheck whether the data object instance has the given property- Specified by:
hasValuein interfaceDataObjectInstanceVariableContainer- Parameters:
property- the name of the property- Returns:
trueif this data object instance has a property with given name,falseotherwise
-
setValue
public <T> void setValue(String property, T value)
- Specified by:
setValuein interfaceDataObjectInstanceVariableContainer
-
removeValue
public <T> T removeValue(String property, Class<T> propertyClass)
- Specified by:
removeValuein interfaceDataObjectInstanceVariableContainer
-
setTransientVariable
public void setTransientVariable(String variableName, Object variableValue)
- Specified by:
setTransientVariablein interfaceVariableContainer
-
getTenantId
public String getTenantId()
Description copied from interface:DataObjectInstanceVariableContainerThe tenant id of the definition- Specified by:
getTenantIdin interfaceDataObjectInstanceVariableContainer- Specified by:
getTenantIdin interfaceVariableContainer- Returns:
- the tenant id of the definition
-
propertyNames
public Iterable<String> propertyNames()
Description copied from interface:DataObjectInstanceVariableContainerAn iterable of all the names of the properties for this data object instance.- Specified by:
propertyNamesin interfaceDataObjectInstanceVariableContainer- Returns:
- iterator of the properties
-
getData
public com.fasterxml.jackson.databind.node.ObjectNode getData()
- Specified by:
getDatain interfaceDataObjectInstanceVariableContainer
-
-