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

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

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

import java.io.IOException;
import java.io.InputStream;

public class ResourceConfigurationSourceProvider implements ConfigurationSourceProvider {
    @Override
    public InputStream open(String path) throws IOException {
        return getClass().getClassLoader().getResourceAsStream(path);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy