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

io.github.protocol.bookkeeper.admin.jdk.Configuration Maven / Gradle / Ivy

The newest version!
package io.github.protocol.bookkeeper.admin.jdk;

public class Configuration {
    private String host = "localhost";
    private int port;

    public Configuration() {
    }

    public void setHost(final String host) {
        this.host = host;
    }

    public void setPort(final int port) {
        this.port = port;
    }

    public String getHost() {
        return this.host;
    }

    public int getPort() {
        return this.port;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy