Interface VariableInstance
-
- All Superinterfaces:
Entity,HasRevision,ValueFields
- All Known Subinterfaces:
VariableInstanceEntity
- All Known Implementing Classes:
TransientVariableInstance,VariableInstanceEntityImpl
@Internal public interface VariableInstance extends ValueFields, Entity, HasRevision
Generic variable class that can be reused for Activiti 6 and 5 engine
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetExecutionId()StringgetProcessInstanceId()StringgetTaskId()StringgetTypeName()ObjectgetValue()voidsetExecutionId(String executionId)voidsetName(String name)voidsetProcessInstanceId(String processInstanceId)voidsetTaskId(String taskId)voidsetTypeName(String typeName)voidsetValue(Object value)-
Methods inherited from interface org.activiti.engine.impl.persistence.entity.Entity
getId, getPersistentState, isDeleted, isInserted, isUpdated, setDeleted, setId, setInserted, setUpdated
-
Methods inherited from interface org.activiti.engine.impl.db.HasRevision
getRevision, getRevisionNext, setRevision
-
Methods inherited from interface org.activiti.engine.impl.variable.ValueFields
getBytes, getCachedValue, getDoubleValue, getLongValue, getName, getTextValue, getTextValue2, setBytes, setCachedValue, setDoubleValue, setLongValue, setTextValue, setTextValue2
-
-
-
-
Method Detail
-
setName
void setName(String name)
-
setProcessInstanceId
void setProcessInstanceId(String processInstanceId)
-
setExecutionId
void setExecutionId(String executionId)
-
getValue
Object getValue()
-
setValue
void setValue(Object value)
-
getTypeName
String getTypeName()
-
setTypeName
void setTypeName(String typeName)
-
getProcessInstanceId
String getProcessInstanceId()
- Specified by:
getProcessInstanceIdin interfaceValueFields- Returns:
- the process instance id of the variable
-
getTaskId
String getTaskId()
- Specified by:
getTaskIdin interfaceValueFields- Returns:
- the task id of the variable
-
setTaskId
void setTaskId(String taskId)
-
getExecutionId
String getExecutionId()
- Specified by:
getExecutionIdin interfaceValueFields- Returns:
- the execution id of the variable
-
-