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

io.github.factoryfx.jetty.DefaultObjectMapper Maven / Gradle / Ivy

There is a newer version: 3.2.1
Show newest version
package io.github.factoryfx.jetty;

import com.fasterxml.jackson.databind.ObjectMapper;
import io.github.factoryfx.factory.jackson.ObjectMapperBuilder;

public class DefaultObjectMapper extends ObjectMapper {

    public DefaultObjectMapper(){
        super();
        ObjectMapperBuilder.buildNewObjectMapper(this);
    }

    protected ObjectMapper createImpl() {
        return ObjectMapperBuilder.buildNewObjectMapper();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy