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

io.descoped.dc.api.util.YamlParserImpl Maven / Gradle / Ivy

There is a newer version: 2.0.4
Show newest version
package io.descoped.dc.api.util;

import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.dataformat.yaml.YAMLFactory;

class YamlParserImpl extends JsonParserImpl {

    static final ObjectMapper YAML_OBJECT_MAPPER = new ObjectMapper(new YAMLFactory());

    public YamlParserImpl() {
        super(YAML_OBJECT_MAPPER);
    }

    public YamlParserImpl(YAMLFactory yamlFactory) {
        super(new ObjectMapper(yamlFactory));
    }

    public YamlParserImpl(ObjectMapper objectMapper) {
        super(objectMapper);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy