示例#1
0
 /**
  * Returns the value of the cookie.
  *
  * @return a <code>String</code> containing the cookie's present value
  * @see #setValue
  * @see Cookie
  */
 public String getValue() {
   if (value == null && usingLazyCookieState) {
     value = unescape(lazyCookieState.getValue().toString(Charsets.ASCII_CHARSET));
   }
   return value;
 }