Home | History | Annotate | Download | only in cookie

Lines Matching defs: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
54 * Parse the given cookie attribute value and update the corresponding
55 * {@link org.apache.http.cookie.Cookie} property.
57 * @param cookie {@link org.apache.http.cookie.Cookie} to be updated
58 * @param value cookie attribute value from the cookie response header
60 void parse(SetCookie cookie, String value)
64 * Peforms cookie validation for the given attribute value.
66 * @param cookie {@link org.apache.http.cookie.Cookie} to validate
67 * @param origin the cookie source to validate against
68 * @throws MalformedCookieException if cookie validation fails for this attribute
70 void validate(Cookie cookie, CookieOrigin origin)
75 * submitted) with the corresponding cookie attribute.
77 * @param cookie {@link org.apache.http.cookie.Cookie} to match
78 * @param origin the cookie source to match against
81 boolean match(Cookie cookie, CookieOrigin origin);