Home | History | Annotate | Download | only in header

Lines Matching defs:DOMAIN

8 * and are considered to be in the public domain.  As a result, a formal
52 public static final String DOMAIN = ParameterNames.DOMAIN;
114 || name.equalsIgnoreCase(ParameterNames.DOMAIN)
186 * that a realm string contain a hostname or domain name. Realm strings
367 * Sets the Domain of the WWWAuthenicateHeader to the <var>domain</var>
370 * @param domain -
371 * the new Domain string of this WWWAuthenicateHeader.
374 * while parsing the domain.
377 public void setDomain(String domain) throws ParseException {
378 if (domain == null)
380 setParameter(ParameterNames.DOMAIN, domain);
384 * Returns the Domain value of this WWWAuthenicateHeader.
386 * @return the String representing the Domain information, null if value is
391 return getParameter(ParameterNames.DOMAIN);