All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.sphere.sdk.json.JavaMoneyModule Maven / Gradle / Ivy

There is a newer version: 1.0.0-M26
Show newest version
package io.sphere.sdk.json;

import com.fasterxml.jackson.databind.module.SimpleModule;

import javax.money.*;

final class JavaMoneyModule extends SimpleModule {
    private static final long serialVersionUID = 0L;

    JavaMoneyModule() {
        addSerializer(MonetaryAmount.class, new MoneySerializer());
        addSerializer(CurrencyUnit.class, new CurrencyUnitSerializer());
        addDeserializer(MonetaryAmount.class, new MoneyDeserializer());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy