Home | History | Annotate | Download | only in cookie

Lines Matching refs:host

50     private final String host;
55 public CookieOrigin(final String host, int port, final String path, boolean secure) {
57 if (host == null) {
59 "Host of origin may not be null");
61 if (host.trim().length() == 0) {
63 "Host of origin may not be blank");
72 this.host = host.toLowerCase(Locale.ENGLISH);
83 return this.host;
105 buffer.append(this.host);