| org.apache.commons.httpclient.cookie.CookieAttributeHandler
CookieAttributeHandler | public interface CookieAttributeHandler (Code) | | Ths interface represents a cookie attribute handler responsible
for parsing, validating, and matching a specific cookie attribute,
such as path, domain, port, etc.
Different cookie specifications can provide a specific
implementation for this class based on their cookie handling
rules.
author: jain.samit@gmail.com (Samit Jain) since: 3.1 |
match | boolean match(Cookie cookie, CookieOrigin origin)(Code) | | Matches the given value (property of the destination host where request is being
submitted) with the corresponding cookie attribute.
Parameters: cookie - org.apache.commons.httpclient.Cookie to match Parameters: origin - the cookie source to match against true if the match is successful; false otherwise |
|
|