public interface CookieSpec
Cookie management specification must define
| Modifier and Type | Method and Description | 
|---|---|
| List<org.apache.hc.core5.http.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(org.apache.hc.core5.http.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. | 
List<Cookie> parse(org.apache.hc.core5.http.Header header, CookieOrigin origin) throws MalformedCookieException
"Set-Cookie" Header into an array of Cookies.
 This method will not perform the validation of the resultant
 Cookies
header - the Set-Cookie received from the serverorigin - details of the cookie originCookies parsed from the headerMalformedCookieException - if an exception occurs during parsingvalidate(org.apache.hc.client5.http.cookie.Cookie, org.apache.hc.client5.http.cookie.CookieOrigin)void validate(Cookie cookie, CookieOrigin origin) throws MalformedCookieException
cookie - the Cookie to validateorigin - details of the cookie originMalformedCookieException - if the cookie is invalidboolean match(Cookie cookie, CookieOrigin origin)
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.List<org.apache.hc.core5.http.Header> formatCookies(List<Cookie> cookies)
"Cookie" headers for an array of Cookies.cookies - the Cookies format into a Cookie headerIllegalArgumentException - if an input parameter is illegalCopyright © 1999–2021 The Apache Software Foundation. All rights reserved.