public interface CookieStore
Cookie
objects.| Modifier and Type | Method and Description |
|---|---|
void |
addCookie(Cookie cookie)
Adds an
Cookie, replacing any existing equivalent cookies. |
void |
clear()
Clears all cookies.
|
boolean |
clearExpired(java.util.Date date)
Removes all of
Cookies in this store that have expired by
the specified Date. |
java.util.List<Cookie> |
getCookies()
Returns all cookies contained in this store.
|
void addCookie(Cookie cookie)
Cookie, replacing any existing equivalent cookies.
If the given cookie has already expired it will not be added, but existing
values will still be removed.cookie - the cookie to be addedjava.util.List<Cookie> getCookies()
boolean clearExpired(java.util.Date date)
Cookies in this store that have expired by
the specified Date.void clear()