Package org.activiti.engine.impl
Class DataObjectImpl
- java.lang.Object
-
- org.activiti.engine.impl.DataObjectImpl
-
- All Implemented Interfaces:
DataObject
public class DataObjectImpl extends Object implements DataObject
-
-
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.StringgetLocalizedName()Localized Name of the DataObject.StringgetName()Name of the DataObject.StringgetType()Type of the DataObject.ObjectgetValue()Value of the DataObject.voidsetDataObjectDefinitionKey(String dataObjectDefinitionKey)voidsetDescription(String description)voidsetLocalizedName(String localizedName)voidsetName(String name)voidsetType(String type)voidsetValue(Object value)
-
-
-
Method Detail
-
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)
-
-