Class VariableInstanceImpl<T>
- java.lang.Object
-
- org.activiti.api.runtime.model.impl.VariableInstanceImpl<T>
-
- All Implemented Interfaces:
VariableInstance
public class VariableInstanceImpl<T> extends Object implements VariableInstance
-
-
Constructor Summary
Constructors Constructor Description VariableInstanceImpl()VariableInstanceImpl(String name, String type, T value, String processInstanceId)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetName()StringgetProcessInstanceId()StringgetTaskId()StringgetType()TgetValue()booleanisTaskVariable()voidsetProcessInstanceId(String processInstanceId)voidsetTaskId(String taskId)StringtoString()
-
-
-
Method Detail
-
getName
public String getName()
- Specified by:
getNamein interfaceVariableInstance
-
getType
public String getType()
- Specified by:
getTypein interfaceVariableInstance
-
getProcessInstanceId
public String getProcessInstanceId()
- Specified by:
getProcessInstanceIdin interfaceVariableInstance
-
setProcessInstanceId
public void setProcessInstanceId(String processInstanceId)
-
getTaskId
public String getTaskId()
- Specified by:
getTaskIdin interfaceVariableInstance
-
isTaskVariable
public boolean isTaskVariable()
- Specified by:
isTaskVariablein interfaceVariableInstance
-
setTaskId
public void setTaskId(String taskId)
-
getValue
public T getValue()
- Specified by:
getValuein interfaceVariableInstance
-
-