Class SpecificationPropertiesSerializerModifier.SpecificationCurrencyAwareBigDecimalSerializer
- java.lang.Object
-
- com.fasterxml.jackson.databind.JsonSerializer<T>
-
- com.fasterxml.jackson.databind.ser.std.StdSerializer<Object>
-
- com.broadleafcommerce.common.dataexport.service.specification.SpecificationPropertiesSerializerModifier.SpecificationCurrencyAwareBigDecimalSerializer
-
- All Implemented Interfaces:
com.fasterxml.jackson.databind.jsonFormatVisitors.JsonFormatVisitable
,com.fasterxml.jackson.databind.jsonschema.SchemaAware
,Serializable
- Enclosing class:
- SpecificationPropertiesSerializerModifier
protected static class SpecificationPropertiesSerializerModifier.SpecificationCurrencyAwareBigDecimalSerializer extends com.fasterxml.jackson.databind.ser.std.StdSerializer<Object>
The custom serializer that is used to serializeBigDecimal
price toString
value. It works similar toCurrencyAwareBigDecimalSerializer
except it serialize value to simple string e.g. "5.00" instead of "{ "amount": 5.00 }".- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
SpecificationCurrencyAwareBigDecimalSerializer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected javax.money.CurrencyUnit
resolveCurrency(Object parentSerializedObject)
protected BigDecimal
scaleAmount(BigDecimal amount, javax.money.CurrencyUnit currency)
void
serialize(Object value, com.fasterxml.jackson.core.JsonGenerator generator, com.fasterxml.jackson.databind.SerializerProvider provider)
-
Methods inherited from class com.fasterxml.jackson.databind.ser.std.StdSerializer
_neitherNull, _nonEmpty, acceptJsonFormatVisitor, createSchemaNode, createSchemaNode, findAnnotatedContentSerializer, findContextualConvertingSerializer, findConvertingContentSerializer, findFormatFeature, findFormatOverrides, findIncludeOverrides, findPropertyFilter, getSchema, getSchema, handledType, isDefaultSerializer, visitArrayFormat, visitArrayFormat, visitFloatFormat, visitIntFormat, visitIntFormat, visitStringFormat, visitStringFormat, wrapAndThrow, wrapAndThrow
-
-
-
-
Method Detail
-
serialize
public void serialize(Object value, com.fasterxml.jackson.core.JsonGenerator generator, com.fasterxml.jackson.databind.SerializerProvider provider) throws IOException
- Specified by:
serialize
in classcom.fasterxml.jackson.databind.ser.std.StdSerializer<Object>
- Throws:
IOException
-
resolveCurrency
protected javax.money.CurrencyUnit resolveCurrency(Object parentSerializedObject)
-
scaleAmount
protected BigDecimal scaleAmount(BigDecimal amount, javax.money.CurrencyUnit currency)
-
-