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

io.zulia.server.config.cluster.MongoServer Maven / Gradle / Ivy

There is a newer version: 1.6.4
Show newest version
package io.zulia.server.config.cluster;

public class MongoServer {

	private String hostname = "localhost";
	private int port = 27017;

	public MongoServer() {
	}

	public MongoServer(String hostname, int port) {
		this.hostname = hostname;
		this.port = port;
	}

	public String getHostname() {
		return hostname;
	}

	public int getPort() {
		return port;
	}

	@Override
	public String toString() {
		return "{" + "hostname='" + hostname + '\'' + ", port=" + port + '}';
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy