Class SimpleVariableInstance
- java.lang.Object
-
- org.camunda.bpm.engine.impl.core.variable.scope.SimpleVariableInstance
-
- All Implemented Interfaces:
CoreVariableInstance
public class SimpleVariableInstance extends java.lang.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 java.lang.Stringnameprotected TypedValuevalue
-
Constructor Summary
Constructors Constructor Description SimpleVariableInstance(java.lang.String name, TypedValue value)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetName()TypedValuegetTypedValue(boolean deserialize)voidsetName(java.lang.String name)voidsetValue(TypedValue value)
-
-
-
Field Detail
-
name
protected java.lang.String name
-
value
protected TypedValue value
-
-
Constructor Detail
-
SimpleVariableInstance
public SimpleVariableInstance(java.lang.String name, TypedValue value)
-
-
Method Detail
-
getName
public java.lang.String getName()
- Specified by:
getNamein interfaceCoreVariableInstance
-
setName
public void setName(java.lang.String name)
-
getTypedValue
public TypedValue getTypedValue(boolean deserialize)
- Specified by:
getTypedValuein interfaceCoreVariableInstance
-
setValue
public void setValue(TypedValue value)
- Specified by:
setValuein interfaceCoreVariableInstance
-
-