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 java.lang.StringgetDataObjectDefinitionKey()The id of the flow element in the process defining this data object.java.lang.StringgetDescription()Description of the DataObject.java.lang.StringgetLocalizedName()Localized Name of the DataObject.java.lang.StringgetName()Name of the DataObject.java.lang.StringgetType()Type of the DataObject.java.lang.ObjectgetValue()Value of the DataObject.
-
-
-
Method Detail
-
getName
java.lang.String getName()
Name of the DataObject.
-
getLocalizedName
java.lang.String getLocalizedName()
Localized Name of the DataObject.
-
getDescription
java.lang.String getDescription()
Description of the DataObject.
-
getValue
java.lang.Object getValue()
Value of the DataObject.
-
getType
java.lang.String getType()
Type of the DataObject.
-
getDataObjectDefinitionKey
java.lang.String getDataObjectDefinitionKey()
The id of the flow element in the process defining this data object.
-
-