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

io.dropwizard.configuration.DefaultConfigurationFactoryFactory Maven / Gradle / Ivy

There is a newer version: 5.0.0-rc.3
Show newest version
package io.dropwizard.configuration;

import com.fasterxml.jackson.databind.ObjectMapper;

import javax.validation.Validator;

public class DefaultConfigurationFactoryFactory implements ConfigurationFactoryFactory {
    @Override
    public ConfigurationFactory create(
            Class     klass,
            Validator    validator,
            ObjectMapper objectMapper,
            String       propertyPrefix) {
        return new YamlConfigurationFactory<>(klass, validator, objectMapper, propertyPrefix);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy