Class HbciJsonCustomSerializer
- java.lang.Object
-
- de.adorsys.opba.protocol.sandbox.hbci.config.HbciJsonCustomSerializer
-
- All Implemented Interfaces:
org.flowable.variable.api.types.VariableType
public class HbciJsonCustomSerializer extends Object implements org.flowable.variable.api.types.VariableType
JSON serializer for small classes (small resulting strings). Preserves the class name used, so deserialzation returns the class that was used to serialize data.
-
-
Constructor Summary
Constructors Constructor Description HbciJsonCustomSerializer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetTypeName()ObjectgetValue(org.flowable.variable.api.types.ValueFields valueFields)booleanisAbleToStore(Object o)booleanisCachable()voidsetValue(Object o, org.flowable.variable.api.types.ValueFields valueFields)
-
-
-
Method Detail
-
getTypeName
public String getTypeName()
- Specified by:
getTypeNamein interfaceorg.flowable.variable.api.types.VariableType
-
isCachable
public boolean isCachable()
- Specified by:
isCachablein interfaceorg.flowable.variable.api.types.VariableType
-
isAbleToStore
public boolean isAbleToStore(Object o)
- Specified by:
isAbleToStorein interfaceorg.flowable.variable.api.types.VariableType
-
setValue
public void setValue(Object o, org.flowable.variable.api.types.ValueFields valueFields)
- Specified by:
setValuein interfaceorg.flowable.variable.api.types.VariableType
-
getValue
public Object getValue(org.flowable.variable.api.types.ValueFields valueFields)
- Specified by:
getValuein interfaceorg.flowable.variable.api.types.VariableType
-
-