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

net.leanix.dropkit.etcd.MinimalEtcdClientFactory Maven / Gradle / Ivy

There is a newer version: 2.0.10
Show newest version
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