Package org.apache.http.cookie
Interface CookieAttributeHandler
-
- All Known Subinterfaces:
CommonCookieAttributeHandler
- All Known Implementing Classes:
AbstractCookieAttributeHandler
,BasicCommentHandler
,BasicDomainHandler
,BasicExpiresHandler
,BasicMaxAgeHandler
,BasicPathHandler
,BasicSecureHandler
,BrowserCompatVersionAttributeHandler
,LaxExpiresHandler
,LaxMaxAgeHandler
,NetscapeDomainHandler
,PublicSuffixDomainFilter
,PublicSuffixFilter
,RFC2109DomainHandler
,RFC2109VersionHandler
,RFC2965CommentUrlAttributeHandler
,RFC2965DiscardAttributeHandler
,RFC2965DomainAttributeHandler
,RFC2965PortAttributeHandler
,RFC2965VersionAttributeHandler
public interface CookieAttributeHandler
This 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.- Since:
- 4.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description 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, java.lang.String value)
Parse the given cookie attribute value and update the correspondingCookie
property.void
validate(Cookie cookie, CookieOrigin origin)
Peforms cookie validation for the given attribute value.
-
-
-
Method Detail
-
parse
void parse(SetCookie cookie, java.lang.String value) throws MalformedCookieException
Parse the given cookie attribute value and update the correspondingCookie
property.- Parameters:
cookie
-Cookie
to be updatedvalue
- cookie attribute value from the cookie response header- Throws:
MalformedCookieException
-
validate
void validate(Cookie cookie, CookieOrigin origin) throws MalformedCookieException
Peforms cookie validation for the given attribute value.- Parameters:
cookie
-Cookie
to validateorigin
- the cookie source to validate against- Throws:
MalformedCookieException
- if cookie validation fails for this attribute
-
match
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.- Parameters:
cookie
-Cookie
to matchorigin
- the cookie source to match against- Returns:
true
if the match is successful;false
otherwise
-
-