FileDocCategorySizeDatePackage
RFC2965CommentUrlAttributeHandler.javaAPI DocAndroid 1.5 API2558Wed May 06 22:41:10 BST 2009org.apache.http.impl.cookie

RFC2965CommentUrlAttributeHandler

public class RFC2965CommentUrlAttributeHandler extends Object implements CookieAttributeHandler
"CommantURL" cookie attribute handler for RFC 2965 cookie spec.

Fields Summary
Constructors Summary
public RFC2965CommentUrlAttributeHandler()

          super();
      
Methods Summary
public booleanmatch(org.apache.http.cookie.Cookie cookie, org.apache.http.cookie.CookieOrigin origin)

          return true;
      
public voidparse(org.apache.http.cookie.SetCookie cookie, java.lang.String commenturl)

          if (cookie instanceof SetCookie2) {
              SetCookie2 cookie2 = (SetCookie2) cookie;
              cookie2.setCommentURL(commenturl);
          }
      
public voidvalidate(org.apache.http.cookie.Cookie cookie, org.apache.http.cookie.CookieOrigin origin)