org.apache.http.impl.cookie
Class RFC2965VersionAttributeHandler

java.lang.Object
  extended by org.apache.http.impl.cookie.RFC2965VersionAttributeHandler
All Implemented Interfaces:
CommonCookieAttributeHandler, CookieAttributeHandler

@Contract(threading=IMMUTABLE)
public class RFC2965VersionAttributeHandler
extends Object
implements CommonCookieAttributeHandler

"Version" cookie attribute handler for RFC 2965 cookie spec.

Since:
4.0

Constructor Summary
RFC2965VersionAttributeHandler()
           
 
Method Summary
 String getAttributeName()
           
 boolean match(Cookie cookie, CookieOrigin origin)
          Matches the given value (property of the destination host where request is being submitted) with the corresponding cookie attribute.
 void parse(SetCookie cookie, String value)
          Parse cookie version attribute.
 void validate(Cookie cookie, CookieOrigin origin)
          validate cookie version attribute.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

RFC2965VersionAttributeHandler

public RFC2965VersionAttributeHandler()
Method Detail

parse

public void parse(SetCookie cookie,
                  String value)
           throws MalformedCookieException
Parse cookie version attribute.

Specified by:
parse in interface CookieAttributeHandler
Parameters:
cookie - Cookie to be updated
value - cookie attribute value from the cookie response header
Throws:
MalformedCookieException

validate

public void validate(Cookie cookie,
                     CookieOrigin origin)
              throws MalformedCookieException
validate cookie version attribute. Version attribute is REQUIRED.

Specified by:
validate in interface CookieAttributeHandler
Parameters:
cookie - Cookie to validate
origin - the cookie source to validate against
Throws:
MalformedCookieException - if cookie validation fails for this attribute

match

public boolean match(Cookie cookie,
                     CookieOrigin origin)
Description copied from interface: CookieAttributeHandler
Matches the given value (property of the destination host where request is being submitted) with the corresponding cookie attribute.

Specified by:
match in interface CookieAttributeHandler
Parameters:
cookie - Cookie to match
origin - the cookie source to match against
Returns:
true if the match is successful; false otherwise

getAttributeName

public String getAttributeName()
Specified by:
getAttributeName in interface CommonCookieAttributeHandler


Copyright © 1999–2020 The Apache Software Foundation. All rights reserved.