Class SimpleVariableInstance
- java.lang.Object
-
- org.camunda.bpm.engine.impl.core.variable.scope.SimpleVariableInstance
-
- All Implemented Interfaces:
CoreVariableInstance
public class SimpleVariableInstance extends Object implements CoreVariableInstance
- Author:
- Daniel Meyer, Roman Smirnov, Sebastian Menski
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classSimpleVariableInstance.SimpleVariableInstanceFactory
-
Field Summary
Fields Modifier and Type Field Description protected Stringnameprotected TypedValuevalue
-
Constructor Summary
Constructors Constructor Description SimpleVariableInstance(String name, TypedValue value)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetName()TypedValuegetTypedValue(boolean deserialize)voidsetName(String name)voidsetValue(TypedValue value)
-
-
-
Field Detail
-
name
protected String name
-
value
protected TypedValue value
-
-
Constructor Detail
-
SimpleVariableInstance
public SimpleVariableInstance(String name, TypedValue value)
-
-
Method Detail
-
getName
public String getName()
- Specified by:
getNamein interfaceCoreVariableInstance
-
setName
public void setName(String name)
-
getTypedValue
public TypedValue getTypedValue(boolean deserialize)
- Specified by:
getTypedValuein interfaceCoreVariableInstance
-
setValue
public void setValue(TypedValue value)
- Specified by:
setValuein interfaceCoreVariableInstance
-
-