net.leanix.dropkit.etcd.MinimalEtcdClientFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of leanix-dropkit Show documentation
Show all versions of leanix-dropkit Show documentation
Base functionality for leanIX dropwizard-based services
package net.leanix.dropkit.etcd;
import java.net.URI;
/**
* A factory which creates the {@linkplain MinimalEtcdClient} instance to give the user the chance to use another client than the
* default {@linkplain MinimalEtcdClientImpl} from leanix-dropkit.
*
* @author ralfwehner
*
*/
public class MinimalEtcdClientFactory {
public MinimalEtcdClient create(URI etcdUri) {
return new MinimalEtcdClientImpl(etcdUri);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy