|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Cookie | |
HTTPClient | This package provides a complete http client library. |
wttools.protocols.extend.http |
Uses of Cookie in HTTPClient |
Subclasses of Cookie in HTTPClient | |
class |
Cookie2
This class represents an http cookie as specified in the HTTP State Management Mechanism spec (also known as a version 1 cookie). |
Methods in HTTPClient that return Cookie | |
protected static Cookie[] |
Cookie.parse(java.lang.String set_cookie,
RoRequest req)
Parses the Set-Cookie header into an array of Cookies. |
protected static Cookie[] |
Cookie2.parse(java.lang.String set_cookie,
RoRequest req)
Parses the Set-Cookie2 header into an array of Cookies. |
static Cookie[] |
CookieModule.listAllCookies()
List all stored cookies for all contexts. |
static Cookie[] |
CookieModule.listAllCookies(java.lang.Object context)
List all stored cookies for a given context. |
Methods in HTTPClient with parameters of type Cookie | |
static void |
CookieModule.addCookie(Cookie cookie)
Add the specified cookie to the list of cookies in the default context. |
static void |
CookieModule.addCookie(Cookie cookie,
java.lang.Object context)
Add the specified cookie to the list of cookies for the specified context. |
static void |
CookieModule.removeCookie(Cookie cookie)
Remove the specified cookie from the list of cookies in the default context. |
static void |
CookieModule.removeCookie(Cookie cookie,
java.lang.Object context)
Remove the specified cookie from the list of cookies for the specified context. |
boolean |
CookiePolicyHandler.acceptCookie(Cookie cookie,
RoRequest req,
RoResponse resp)
This method is called for each cookie that a server tries to set via the Set-Cookie header. |
boolean |
CookiePolicyHandler.sendCookie(Cookie cookie,
RoRequest req)
This method is called for each cookie that is eligible for sending with a request (according to the matching rules for the path, domain, protocol, etc). |
Uses of Cookie in wttools.protocols.extend.http |
Methods in wttools.protocols.extend.http with parameters of type Cookie | |
boolean |
CookiePolicyHandlerImpl.acceptCookie(Cookie param1,
RoRequest param2,
RoResponse param3)
|
boolean |
CookiePolicyHandlerImpl.sendCookie(Cookie param1,
RoRequest param2)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |