Class EngineRestVariable
- java.lang.Object
-
- org.flowable.common.rest.variable.EngineRestVariable
-
public class EngineRestVariable extends Object
Pojo representing a variable used in REST-service which defines it's name, variable and type.- Author:
- Yvo Swillens
-
-
Constructor Summary
Constructors Constructor Description EngineRestVariable()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetName()StringgetType()ObjectgetValue()StringgetValueUrl()voidsetName(String name)voidsetType(String type)voidsetValue(Object value)voidsetValueUrl(String valueUrl)
-
-
-
Method Detail
-
getName
public String getName()
-
setName
public void setName(String name)
-
getType
public String getType()
-
setType
public void setType(String type)
-
getValue
public Object getValue()
-
setValue
public void setValue(Object value)
-
setValueUrl
public void setValueUrl(String valueUrl)
-
getValueUrl
public String getValueUrl()
-
-