Package org.activiti.engine.runtime
Interface DataObject
-
- All Known Implementing Classes:
DataObjectImpl
@Internal public interface DataObject
-
-
Method Summary
All Methods Instance Methods Abstract 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.
-
-
-
Method Detail
-
getName
String getName()
Name of the DataObject.
-
getLocalizedName
String getLocalizedName()
Localized Name of the DataObject.
-
getDescription
String getDescription()
Description of the DataObject.
-
getValue
Object getValue()
Value of the DataObject.
-
getType
String getType()
Type of the DataObject.
-
getDataObjectDefinitionKey
String getDataObjectDefinitionKey()
The id of the flow element in the process defining this data object.
-
-