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

org.metricssampler.cmd.ControlCommandDelegate Maven / Gradle / Ivy

The newest version!
package org.metricssampler.cmd;

import com.beust.jcommander.Parameter;

public class ControlCommandDelegate {
	@Parameter(names="-h", descriptionKey="help.param.control.host")
	private String host = "localhost";

	@Parameter(names="-p", descriptionKey="help.param.control.port")
	private int port = 28111;

	public String getHost() {
		return host;
	}

	public int getPort() {
		return port;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy