public class BestMatchSpec extends java.lang.Object implements CookieSpec
Constructor and Description |
---|
BestMatchSpec() |
BestMatchSpec(java.lang.String[] datepatterns,
boolean oneHeader) |
Modifier and Type | Method and Description |
---|---|
java.util.List |
formatCookies(java.util.List 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 |
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 BestMatchSpec(java.lang.String[] datepatterns, boolean oneHeader)
public BestMatchSpec()
public java.util.List parse(Header header, CookieOrigin origin) throws MalformedCookieException
CookieSpec
This method will not perform the validation of the resultant
Cookie
s
parse
in interface CookieSpec
header
- the Set-Cookie received from the serverorigin
- details of the cookie originMalformedCookieException
- if an exception occurs during parsingCookieSpec.validate(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin)
public void validate(Cookie cookie, CookieOrigin origin) throws MalformedCookieException
CookieSpec
validate
in interface CookieSpec
cookie
- the Cookie to validateorigin
- details of the cookie originMalformedCookieException
- if the cookie is invalidpublic boolean match(Cookie cookie, CookieOrigin origin)
CookieSpec
match
in interface CookieSpec
cookie
- the Cookie to be matchedorigin
- the target to test againstpublic java.util.List formatCookies(java.util.List cookies)
CookieSpec
formatCookies
in interface CookieSpec
cookies
- the Cookies format into a Cookie headerpublic int getVersion()
CookieSpec
getVersion
in interface CookieSpec
public Header getVersionHeader()
CookieSpec
null
if the cookie
specification does not support Cookie2 header.getVersionHeader
in interface CookieSpec
public java.lang.String toString()
toString
in class java.lang.Object