Home | History | Annotate | Download | only in header

Lines Matching refs:opaque

56     public static final String OPAQUE = ParameterNames.OPAQUE;
115 || name.equalsIgnoreCase(ParameterNames.OPAQUE)
339 * Sets the Opaque value of the WWWAuthenicateHeader to the new <var>opaque</var>
342 * @param opaque -
343 * the new Opaque string of this WWWAuthenicateHeader.
346 * while parsing the opaque value.
349 public void setOpaque(String opaque) throws ParseException {
350 if (opaque == null)
352 setParameter(ParameterNames.OPAQUE, opaque);
356 * Returns the Opaque value of this WWWAuthenicateHeader.
358 * @return the String representing the Opaque information, null if the value
363 return getParameter(ParameterNames.OPAQUE);