Package org.apache.http.client
Interface CookieStore
- All Known Implementing Classes:
BasicCookieStore
public interface CookieStore
This interface represents an abstract store for
Cookie
objects.- Since:
- 4.0
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Adds anCookie
, replacing any existing equivalent cookies.void
clear()
Clears all cookies.boolean
clearExpired
(Date date) Returns all cookies contained in this store.
-
Method Details
-
addCookie
Adds anCookie
, replacing any existing equivalent cookies. If the given cookie has already expired it will not be added, but existing values will still be removed.- Parameters:
cookie
- thecookie
to be added
-
getCookies
Returns all cookies contained in this store.- Returns:
- all cookies
-
clearExpired
- Returns:
- true if any cookies were purged.
-
clear
void clear()Clears all cookies.
-