solutions.bkit.configurableloadbalanced.HostPortItem Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of configurable-load-balanced Show documentation
Show all versions of configurable-load-balanced Show documentation
A configurable Spring Cloud Load Balancer
package solutions.bkit.configurableloadbalanced;
public class HostPortItem {
private String host;
private int port;
private int svcPort;
public HostPortItem(String host, int port, int svcPort) {
this.host = host;
this.port = port;
this.svcPort = svcPort;
}
public String getHost() {
return host;
}
public int getPort() {
return port;
}
public int getSvcPort() {
return svcPort;
}
}