CookieSpec@Contract(threading=IMMUTABLE) public class IgnoreSpec extends CookieSpecBase
| Constructor | Description |
|---|---|
IgnoreSpec() |
| Modifier and Type | Method | Description |
|---|---|---|
java.util.List<org.apache.http.Header> |
formatCookies(java.util.List<Cookie> cookies) |
Create
"Cookie" headers for an array of Cookies. |
int |
getVersion() |
Returns version of the state management this cookie specification
conforms to.
|
org.apache.http.Header |
getVersionHeader() |
Returns a request header identifying what version of the state management
specification is understood.
|
boolean |
match(Cookie cookie,
CookieOrigin origin) |
Determines if a Cookie matches the target location.
|
java.util.List<Cookie> |
parse(org.apache.http.Header header,
CookieOrigin origin) |
Parse the
"Set-Cookie" Header into an array of Cookies. |
findAttribHandler, getAttribHandler, getAttribHandlers, registerAttribHandlergetDefaultDomain, getDefaultPath, parse, validatepublic int getVersion()
CookieSpecpublic java.util.List<Cookie> parse(org.apache.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
Cookies
header - the Set-Cookie received from the serverorigin - details of the cookie originCookies parsed from the headerMalformedCookieException - if an exception occurs during parsingCookieSpec.validate(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin)public boolean match(Cookie cookie, CookieOrigin origin)
CookieSpecmatch in interface CookieSpecmatch in class CookieSpecBasecookie - 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 java.util.List<org.apache.http.Header> formatCookies(java.util.List<Cookie> cookies)
CookieSpec"Cookie" headers for an array of Cookies.cookies - the Cookies format into a Cookie headerpublic org.apache.http.Header getVersionHeader()
CookieSpecnull if the cookie
specification does not support Cookie2 header.