Home | History | Annotate | Download | only in cookie

Lines Matching refs:cookie

2  * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/cookie/CookieAttributeHandler.java $
31 package org.apache.http.cookie;
34 * Ths interface represents a cookie attribute handler responsible
35 * for parsing, validating, and matching a specific cookie attribute,
38 * Different cookie specifications can provide a specific
39 * implementation for this class based on their cookie handling
49 * Parse the given cookie attribute value and update the corresponding
50 * {@link org.apache.http.cookie.Cookie} property.
52 * @param cookie {@link org.apache.http.cookie.Cookie} to be updated
53 * @param value cookie attribute value from the cookie response header
55 void parse(SetCookie cookie, String value)
59 * Peforms cookie validation for the given attribute value.
61 * @param cookie {@link org.apache.http.cookie.Cookie} to validate
62 * @param origin the cookie source to validate against
63 * @throws MalformedCookieException if cookie validation fails for this attribute
65 void validate(Cookie cookie, CookieOrigin origin)
70 * submitted) with the corresponding cookie attribute.
72 * @param cookie {@link org.apache.http.cookie.Cookie} to match
73 * @param origin the cookie source to match against
76 boolean match(Cookie cookie, CookieOrigin origin);