@Contract(threading=STATELESS) public class IgnoreSpecSpec extends CookieSpecBase
Modifier and Type | Field and Description |
---|---|
static IgnoreSpecSpec |
INSTANCE
Default instance of
IgnoreSpecSpec . |
Constructor and Description |
---|
IgnoreSpecSpec() |
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. |
getDefaultDomain, getDefaultPath, parse, validate
findAttribHandler, getAttribHandler, getAttribHandlers
public static final IgnoreSpecSpec INSTANCE
IgnoreSpecSpec
.public List<Cookie> parse(org.apache.hc.core5.http.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
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 boolean match(Cookie cookie, CookieOrigin origin)
CookieSpec
match
in interface CookieSpec
match
in class CookieSpecBase
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 List<org.apache.hc.core5.http.Header> formatCookies(List<Cookie> cookies)
CookieSpec
"Cookie"
headers for an array of Cookies.cookies
- the Cookies format into a Cookie headerCopyright © 1999–2021 The Apache Software Foundation. All rights reserved.