@Contract(threading=SAFE) public class RFC6265CookieSpec extends Object implements CookieSpec
Modifier | Constructor and Description |
---|---|
protected |
RFC6265CookieSpec(CommonCookieAttributeHandler... handlers) |
Modifier and Type | Method and Description |
---|---|
List<Header> |
formatCookies(List<Cookie> cookies)
Create
"Cookie" headers for an array of Cookies. |
boolean |
match(Cookie cookie,
CookieOrigin origin)
Determines if a Cookie matches the target location.
|
List<Cookie> |
parse(Header header,
CookieOrigin origin)
Parse the
"Set-Cookie" Header into an array of Cookies. |
void |
validate(Cookie cookie,
CookieOrigin origin)
Validate the cookie according to validation rules defined by the
cookie specification.
|
protected RFC6265CookieSpec(CommonCookieAttributeHandler... handlers)
public List<Header> formatCookies(List<Cookie> cookies)
CookieSpec
"Cookie"
headers for an array of Cookies.formatCookies
in interface CookieSpec
cookies
- the Cookies format into a Cookie headerpublic final boolean match(Cookie cookie, CookieOrigin origin)
CookieSpec
match
in interface CookieSpec
cookie
- the Cookie to be matchedorigin
- the target to test againsttrue
if the cookie should be submitted with a request
with given attributes, false
otherwise.public final List<Cookie> parse(Header header, CookieOrigin origin) throws MalformedCookieException
CookieSpec
"Set-Cookie"
Header into an array of Cookies.
This method will not perform the validation of the resultant
Cookie
s
parse
in interface CookieSpec
header
- the Set-Cookie
received from the serverorigin
- details of the cookie originCookie
s parsed from the headerMalformedCookieException
- if an exception occurs during parsingCookieSpec.validate(org.apache.hc.client5.http.cookie.Cookie, org.apache.hc.client5.http.cookie.CookieOrigin)
public final void validate(Cookie cookie, CookieOrigin origin) throws MalformedCookieException
CookieSpec
validate
in interface CookieSpec
cookie
- the Cookie to validateorigin
- details of the cookie originMalformedCookieException
- if the cookie is invalid