Package org.flowable.engine.impl
Class DataObjectImpl
- java.lang.Object
-
- org.flowable.engine.impl.DataObjectImpl
-
- All Implemented Interfaces:
DataObject
public class DataObjectImpl extends Object implements DataObject
-
-
Field Summary
Fields Modifier and Type Field Description protected StringdataObjectDefinitionKeyprotected Stringdescriptionprotected StringexecutionIdprotected Stringidprotected StringlocalizedDescriptionprotected StringlocalizedNameprotected Stringnameprotected StringprocessInstanceIdprotected Objectvalue
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetDataObjectDefinitionKey()The id of the flow element in the process defining this data object.StringgetDescription()Description of the DataObject.StringgetExecutionId()The id of the execution in which this Data Object resides.StringgetId()The unique id of this Data Object.StringgetLocalizedName()Localized Name of the DataObject.StringgetName()Name of the DataObject.StringgetProcessInstanceId()/** The id of the process instance that this Data Object is associated with.StringgetType()Type of the DataObject.ObjectgetValue()Value of the DataObject.voidsetDataObjectDefinitionKey(String dataObjectDefinitionKey)voidsetDescription(String description)voidsetExecutionId(String executionId)voidsetId(String id)voidsetLocalizedName(String localizedName)voidsetName(String name)voidsetProcessInstanceId(String processInstanceId)voidsetType(String type)voidsetValue(Object value)
-
-
-
Field Detail
-
id
protected String id
-
processInstanceId
protected String processInstanceId
-
executionId
protected String executionId
-
name
protected String name
-
value
protected Object value
-
description
protected String description
-
localizedName
protected String localizedName
-
localizedDescription
protected String localizedDescription
-
dataObjectDefinitionKey
protected String dataObjectDefinitionKey
-
-
Method Detail
-
setId
public void setId(String id)
-
getId
public String getId()
Description copied from interface:DataObjectThe unique id of this Data Object.- Specified by:
getIdin interfaceDataObject
-
setProcessInstanceId
public void setProcessInstanceId(String processInstanceId)
-
getProcessInstanceId
public String getProcessInstanceId()
Description copied from interface:DataObject/** The id of the process instance that this Data Object is associated with.- Specified by:
getProcessInstanceIdin interfaceDataObject
-
setExecutionId
public void setExecutionId(String executionId)
-
getExecutionId
public String getExecutionId()
Description copied from interface:DataObjectThe id of the execution in which this Data Object resides. A DataObject only resides on a process instance execution or a subprocess execution.- Specified by:
getExecutionIdin interfaceDataObject
-
getName
public String getName()
Description copied from interface:DataObjectName of the DataObject.- Specified by:
getNamein interfaceDataObject
-
setName
public void setName(String name)
-
getLocalizedName
public String getLocalizedName()
Description copied from interface:DataObjectLocalized Name of the DataObject.- Specified by:
getLocalizedNamein interfaceDataObject
-
setLocalizedName
public void setLocalizedName(String localizedName)
-
getDescription
public String getDescription()
Description copied from interface:DataObjectDescription of the DataObject.- Specified by:
getDescriptionin interfaceDataObject
-
setDescription
public void setDescription(String description)
-
getValue
public Object getValue()
Description copied from interface:DataObjectValue of the DataObject.- Specified by:
getValuein interfaceDataObject
-
setValue
public void setValue(Object value)
-
getType
public String getType()
Description copied from interface:DataObjectType of the DataObject.- Specified by:
getTypein interfaceDataObject
-
setType
public void setType(String type)
-
getDataObjectDefinitionKey
public String getDataObjectDefinitionKey()
Description copied from interface:DataObjectThe id of the flow element in the process defining this data object.- Specified by:
getDataObjectDefinitionKeyin interfaceDataObject
-
setDataObjectDefinitionKey
public void setDataObjectDefinitionKey(String dataObjectDefinitionKey)
-
-