Home | History | Annotate | Download | only in stack

Lines Matching refs:host

54     protected String host;
65 return host + ":" + port + "/" + transport;
69 * Create new hop given host, port and transport.
75 host = hostName;
79 if(host.indexOf(":") >= 0)
80 if(host.indexOf("[") < 0)
81 host = "[" + host + "]";
90 * @param hop is a hop string in the form of host:port/Transport
104 this.host = hop.substring(0,colon);
120 this.host = hop.substring(0,slash);
124 this.host = hop;
131 if (host == null || host.length() == 0)
132 throw new IllegalArgumentException("no host!");
135 this.host = this.host.trim();
138 if ((brack>0) && host.charAt(0)!='[') {
151 * Retruns the host string.
152 * @return host String
155 return host;