@Contract(threading=SAFE) public class RFC6265CookieSpec extends java.lang.Object implements CookieSpec
| Modifier and Type | Field and Description |
|---|---|
private java.util.Map<java.lang.String,CookieAttributeHandler> |
attribHandlerMap |
private CookieAttributeHandler[] |
attribHandlers |
private static char |
COMMA_CHAR |
private static char |
DQUOTE_CHAR |
private static char |
EQUAL_CHAR |
private static char |
ESCAPE_CHAR |
private static char |
PARAM_DELIMITER |
private static java.util.BitSet |
SPECIAL_CHARS |
private static java.util.BitSet |
TOKEN_DELIMS |
private org.apache.http.message.TokenParser |
tokenParser |
private static java.util.BitSet |
VALUE_DELIMS |
| Modifier | Constructor and Description |
|---|---|
protected |
RFC6265CookieSpec(CommonCookieAttributeHandler... handlers) |
| Modifier and Type | Method and Description |
|---|---|
(package private) boolean |
containsChars(java.lang.CharSequence s,
java.util.BitSet chars) |
(package private) boolean |
containsSpecialChar(java.lang.CharSequence s) |
java.util.List<org.apache.http.Header> |
formatCookies(java.util.List<Cookie> cookies)
Create
"Cookie" headers for an array of Cookies. |
(package private) static java.lang.String |
getDefaultDomain(CookieOrigin origin) |
(package private) static java.lang.String |
getDefaultPath(CookieOrigin origin) |
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. |
void |
validate(Cookie cookie,
CookieOrigin origin)
Validate the cookie according to validation rules defined by the
cookie specification.
|
private static final char PARAM_DELIMITER
private static final char COMMA_CHAR
private static final char EQUAL_CHAR
private static final char DQUOTE_CHAR
private static final char ESCAPE_CHAR
private static final java.util.BitSet TOKEN_DELIMS
private static final java.util.BitSet VALUE_DELIMS
private static final java.util.BitSet SPECIAL_CHARS
private final CookieAttributeHandler[] attribHandlers
private final java.util.Map<java.lang.String,CookieAttributeHandler> attribHandlerMap
private final org.apache.http.message.TokenParser tokenParser
protected RFC6265CookieSpec(CommonCookieAttributeHandler... handlers)
static java.lang.String getDefaultPath(CookieOrigin origin)
static java.lang.String getDefaultDomain(CookieOrigin origin)
public final 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
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(org.apache.http.cookie.Cookie, org.apache.http.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<org.apache.http.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 headerboolean containsSpecialChar(java.lang.CharSequence s)
boolean containsChars(java.lang.CharSequence s,
java.util.BitSet chars)
public final int getVersion()
CookieSpecgetVersion in interface CookieSpecpublic final org.apache.http.Header getVersionHeader()
CookieSpecnull if the cookie
specification does not support Cookie2 header.getVersionHeader in interface CookieSpec