@ThreadSafe public class RFC6265StrictSpec extends java.lang.Object
CookieSpec implementation that enforces syntax
and semantics of the well-behaved profile of the HTTP state management specification
(RFC 6265, section 4).| Constructor and Description |
|---|
RFC6265StrictSpec() |
| Modifier and Type | Method and Description |
|---|---|
java.util.List<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.
|
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(Header header,
CookieOrigin origin)
Parse the
"Set-Cookie" Header into an array of Cookies. |
java.lang.String |
toString() |
void |
validate(Cookie cookie,
CookieOrigin origin)
Validate the cookie according to validation rules defined by the
cookie specification.
|
public java.lang.String toString()
toString in class java.lang.Objectpublic final java.util.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
Cookies
parse in interface CookieSpecheader - the Set-Cookie received from the serverorigin - details of the cookie originCookies parsed from the headerMalformedCookieException - if an exception occurs during parsingCookieSpec.validate(cz.msebera.android.httpclient.cookie.Cookie, cz.msebera.android.httpclient.cookie.CookieOrigin)public final void validate(Cookie cookie, CookieOrigin origin) throws MalformedCookieException
CookieSpecvalidate in interface CookieSpeccookie - the Cookie to validateorigin - details of the cookie originMalformedCookieException - if the cookie is invalidpublic final boolean match(Cookie cookie, CookieOrigin origin)
CookieSpecmatch in interface CookieSpeccookie - 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<Header> formatCookies(java.util.List<Cookie> cookies)
CookieSpec"Cookie" headers for an array of Cookies.formatCookies in interface CookieSpeccookies - the Cookies format into a Cookie headerpublic final int getVersion()
CookieSpecgetVersion in interface CookieSpecpublic final Header getVersionHeader()
CookieSpecnull if the cookie
specification does not support Cookie2 header.getVersionHeader in interface CookieSpec