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 booleancanConvertToRestVariable(Object value)ObjectconvertToRestVariable(Object value)ObjectfromRestValue(Object value)StringgetRestTypeName()Class<?>getVariableType()protected com.fasterxml.jackson.databind.JsonNodetoRestRepresentation(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:
fromRestValuein interfaceRestVariableConverter
-
convertToRestVariable
public Object convertToRestVariable(Object value)
- Specified by:
convertToRestVariablein interfaceRestVariableConverter
-
toRestRepresentation
protected com.fasterxml.jackson.databind.JsonNode toRestRepresentation(DataDictionaryVariable variable)
-
canConvertToRestVariable
public boolean canConvertToRestVariable(Object value)
- Specified by:
canConvertToRestVariablein interfaceRestVariableConverter
-
getRestTypeName
public String getRestTypeName()
- Specified by:
getRestTypeNamein interfaceRestVariableConverter
-
getVariableType
public Class<?> getVariableType()
- Specified by:
getVariableTypein interfaceRestVariableConverter
-
-