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

net.amygdalum.testrecorder.profile.DefaultPathConfigurationLoader Maven / Gradle / Ivy

package net.amygdalum.testrecorder.profile;

import static net.amygdalum.testrecorder.profile.ConfigurationLoader.defaultClassLoader;

import java.nio.file.Paths;

public class DefaultPathConfigurationLoader extends PathConfigurationLoader implements ConfigurationLoader {

	public DefaultPathConfigurationLoader() {
		this(defaultClassLoader(DefaultPathConfigurationLoader.class));
	}

	public DefaultPathConfigurationLoader(ClassLoader loader) {
		super(loader, Paths.get("agentconfig"));
	}
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy