HomeSort by relevance Sort by last modified time
    Searched full:commenturl (Results 1 - 7 of 7) sorted by null

  /external/apache-http/src/org/apache/http/impl/cookie/
BasicClientCookie2.java 47 private String commentURL;
72 return this.commentURL;
75 public void setCommentURL(final String commentURL) {
76 this.commentURL = commentURL;
RFC2965CommentUrlAttributeHandler.java 50 public void parse(final SetCookie cookie, final String commenturl)
54 cookie2.setCommentURL(commenturl);
RFC2965DiscardAttributeHandler.java 50 public void parse(final SetCookie cookie, final String commenturl)
  /libcore/luni/src/main/java/java/net/
HttpCookie.java 53 * CommentURL} attributes and renames the header from {@code Set-Cookie}
105 RESERVED_NAMES.add("commenturl"); // RFC 2965
353 } else if (name.equals("commenturl") && cookie.commentURL == null) {
354 cookie.commentURL = value;
474 private String commentURL;
535 * Returns the value of {@code CommentURL} attribute.
538 return commentURL;
633 * Set the {@code CommentURL} attribute of this cookie.
635 public void setCommentURL(String commentURL) {
    [all...]
  /external/apache-http/src/org/apache/http/cookie/
ClientCookie.java 60 public static final String COMMENTURL_ATTR = "commenturl";
SetCookie2.java 48 void setCommentURL(String commentURL);
  /libcore/luni/src/test/java/libcore/java/net/
CookiesTest.java 112 + "CommentURL=http://google.com/; "
146 + "CommentURL=\"http://google.com/\"; "

Completed in 199 milliseconds