com.github.ltsopensource.monitor.MonitorCfg Maven / Gradle / Ivy
package com.github.ltsopensource.monitor;
import java.util.Map;
/**
* @author Robert HG ([email protected]) on 3/10/16.
*/
public class MonitorCfg {
private String identity;
private String registryAddress;
private String bindIp;
private String clusterName;
private Map configs;
public String getIdentity() {
return identity;
}
public void setIdentity(String identity) {
this.identity = identity;
}
public String getBindIp() {
return bindIp;
}
public void setBindIp(String bindIp) {
this.bindIp = bindIp;
}
public String getRegistryAddress() {
return registryAddress;
}
public void setRegistryAddress(String registryAddress) {
this.registryAddress = registryAddress;
}
public String getClusterName() {
return clusterName;
}
public void setClusterName(String clusterName) {
this.clusterName = clusterName;
}
public Map getConfigs() {
return configs;
}
public void setConfigs(Map configs) {
this.configs = configs;
}
}