Class LocalDateTimeRestVariableConverter
- java.lang.Object
-
- org.flowable.common.rest.variable.LocalDateTimeRestVariableConverter
-
- All Implemented Interfaces:
RestVariableConverter
public class LocalDateTimeRestVariableConverter extends Object implements RestVariableConverter
- Author:
- Filip Hrisafov
-
-
Constructor Summary
Constructors Constructor Description LocalDateTimeRestVariableConverter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidconvertVariableValue(Object variableValue, EngineRestVariable result)Converts the given value and sets the converted value in the givenEngineRestVariable.StringgetRestTypeName()Simple type-name used by this converter.Class<?>getVariableType()Type of variables this converter is able to convert.ObjectgetVariableValue(EngineRestVariable result)Extract the variable value to be used in the engine from the givenEngineRestVariable.
-
-
-
Method Detail
-
getRestTypeName
public String getRestTypeName()
Description copied from interface:RestVariableConverterSimple type-name used by this converter.- Specified by:
getRestTypeNamein interfaceRestVariableConverter
-
getVariableType
public Class<?> getVariableType()
Description copied from interface:RestVariableConverterType of variables this converter is able to convert.- Specified by:
getVariableTypein interfaceRestVariableConverter
-
getVariableValue
public Object getVariableValue(EngineRestVariable result)
Description copied from interface:RestVariableConverterExtract the variable value to be used in the engine from the givenEngineRestVariable.- Specified by:
getVariableValuein interfaceRestVariableConverter
-
convertVariableValue
public void convertVariableValue(Object variableValue, EngineRestVariable result)
Description copied from interface:RestVariableConverterConverts the given value and sets the converted value in the givenEngineRestVariable.- Specified by:
convertVariableValuein interfaceRestVariableConverter
-
-