| 
 | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
public interface CookieSpec
Defines the cookie management specification.
Cookie management specification must define
Please do not use methods marked as @Obsolete. They have been rendered obsolete by RFC 6265.
| Method Summary | |
|---|---|
|  List<org.apache.http.Header> | formatCookies(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. | 
|  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. | 
| Method Detail | 
|---|
@Obsolete int getVersion()
List<Cookie> parse(org.apache.http.Header header,
                   CookieOrigin origin)
                   throws MalformedCookieException
"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 origin
Cookies parsed from the header
MalformedCookieException - if an exception occurs during parsingvalidate(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin)
void validate(Cookie cookie,
              CookieOrigin origin)
              throws MalformedCookieException
cookie - the Cookie to validateorigin - details of the cookie origin
MalformedCookieException - if the cookie is invalid
boolean match(Cookie cookie,
              CookieOrigin origin)
cookie - the Cookie to be matchedorigin - the target to test against
true if the cookie should be submitted with a request
  with given attributes, false otherwise.List<org.apache.http.Header> formatCookies(List<Cookie> cookies)
"Cookie" headers for an array of Cookies.
cookies - the Cookies format into a Cookie header
IllegalArgumentException - if an input parameter is illegal@Obsolete org.apache.http.Header getVersionHeader()
null if the cookie
 specification does not support Cookie2 header.
| 
 | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||