gateway-server/src/main/java/org/apache/knox/gateway/config/impl/GatewayConfigImpl.java [599:607]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public List<InetSocketAddress> getGatewayAddress() throws UnknownHostException {
    List<String> hostIps = getGatewayHost();
    int port = getGatewayPort();
    List<InetSocketAddress> socketAddressList = new ArrayList<>();
    for (String host : hostIps) {
      socketAddressList.add(new InetSocketAddress( host, port ));
    }
    return socketAddressList;
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



gateway-spi-common/src/main/java/org/apache/knox/gateway/GatewayTestConfig.java [201:209]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public List<InetSocketAddress> getGatewayAddress() throws UnknownHostException {
    List<String> hostIps = getGatewayHost();
    int port = getGatewayPort();
    List<InetSocketAddress> socketAddressList = new ArrayList<>();
    for (String host : hostIps) {
      socketAddressList.add(new InetSocketAddress( host, port ));
    }
    return socketAddressList;
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



