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

io.sphere.sdk.json.SphereEnumModule 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 io.sphere.sdk.models.SphereEnumeration;

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

    SphereEnumModule() {
        addSerializer(SphereEnumeration.class, new EnumSerializer());
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy