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

solutions.bkit.configurableloadbalanced.HostPortItem Maven / Gradle / Ivy

There is a newer version: 0.0.2
Show newest version
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;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy