Home | History | Annotate | Download | only in header

Lines Matching refs:host

53      * host field
55 protected String host;
66 * @param host is the host.
68 public CallIdentifier(String localId, String host) {
70 this.host = host;
93 if (host != null) {
94 buffer.append(AT).append(host);
114 if (this.host == that.host)
116 if ((this.host == null && that.host != null)
117 || (this.host != null && that.host == null))
119 if (host.compareToIgnoreCase(that.host) != 0) {
140 /** get the host field
141 * @return host member String
144 return host;
166 host = null;
169 host = cid.substring(index + 1, cid.length());
170 if (localId == null || host == null) {
177 * Set the host member
178 * @param host String to set
180 public void setHost(String host) {
181 this.host = host;