public interface CookieSpec
Cookie management specification must define
| 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.
|
void |
validate(Cookie cookie,
CookieOrigin origin)
Validate the cookie according to validation rules defined by the
cookie specification.
|
int getVersion()
java.util.List<Cookie> parse(Header header, CookieOrigin origin) throws MalformedCookieException
This method will not perform the validation of the resultant
Cookies
header - the Set-Cookie received from the serverorigin - details of the cookie originMalformedCookieException - if an exception occurs during parsingvalidate(cz.msebera.android.httpclient.cookie.Cookie, cz.msebera.android.httpclient.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 againstjava.util.List<Header> formatCookies(java.util.List<Cookie> cookies)
cookies - the Cookies format into a Cookie headerjava.lang.IllegalArgumentException - if an input parameter is illegalHeader getVersionHeader()
null if the cookie
specification does not support Cookie2 header.