Class DataDictionaryVariableRestConverter
- java.lang.Object
-
- com.flowable.platform.service.datadictionary.DataDictionaryVariableRestConverter
-
- All Implemented Interfaces:
RestVariableConverter
,RestVariableConverter
public class DataDictionaryVariableRestConverter extends Object implements RestVariableConverter
-
-
Constructor Summary
Constructors Constructor Description DataDictionaryVariableRestConverter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
canConvertToRestVariable(Object value)
Object
convertToRestVariable(Object value)
Object
fromRestValue(Object value)
String
getRestTypeName()
Class<?>
getVariableType()
protected com.fasterxml.jackson.databind.JsonNode
toRestRepresentation(DataDictionaryVariable variable)
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.flowable.core.common.rest.variable.RestVariableConverter
convertVariableValue, getVariableValue
-
-
-
-
Method Detail
-
fromRestValue
public Object fromRestValue(Object value)
- Specified by:
fromRestValue
in interfaceRestVariableConverter
-
convertToRestVariable
public Object convertToRestVariable(Object value)
- Specified by:
convertToRestVariable
in interfaceRestVariableConverter
-
toRestRepresentation
protected com.fasterxml.jackson.databind.JsonNode toRestRepresentation(DataDictionaryVariable variable)
-
canConvertToRestVariable
public boolean canConvertToRestVariable(Object value)
- Specified by:
canConvertToRestVariable
in interfaceRestVariableConverter
-
getRestTypeName
public String getRestTypeName()
- Specified by:
getRestTypeName
in interfaceRestVariableConverter
-
getVariableType
public Class<?> getVariableType()
- Specified by:
getVariableType
in interfaceRestVariableConverter
-
-