Home | History | Annotate | Download | only in config

Lines Matching refs:hostname

23      * Lower case hostname for this domain rule.
25 public final String hostname;
32 public Domain(String hostname, boolean subdomainsIncluded) {
33 if (hostname == null) {
34 throw new NullPointerException("Hostname must not be null");
36 this.hostname = hostname.toLowerCase(Locale.US);
42 return hostname.hashCode() ^ (subdomainsIncluded ? 1231 : 1237);
55 otherDomain.hostname.equals(this.hostname);