org.zodic.kubernetes.istio.IstioClientInfo Maven / Gradle / Ivy
package org.zodic.kubernetes.istio;
public class IstioClientInfo {
private boolean enabled = false;
private Integer envoyPort = 15090;
private String testPath = "stats/prometheus";
public IstioClientInfo() {
}
public boolean isEnabled() {
return enabled;
}
public void setEnabled(boolean enabled) {
this.enabled = enabled;
}
public Integer getEnvoyPort() {
return this.envoyPort;
}
public void setEnvoyPort(Integer envoyPort) {
this.envoyPort = envoyPort;
}
public String getTestPath() {
return this.testPath;
}
public void setTestPath(String testPath) {
this.testPath = testPath;
}
}