protected static class ThrottledFetcher.OurBasicCookieStore extends Object implements org.apache.http.client.CookieStore, Serializable
Constructor and Description |
---|
ThrottledFetcher.OurBasicCookieStore() |
Modifier and Type | Method and Description |
---|---|
void |
addCookie(org.apache.http.cookie.Cookie cookie)
Adds an
HTTP cookie , replacing any existing equivalent cookies. |
void |
addCookies(org.apache.http.cookie.Cookie[] cookies)
Adds an array of
HTTP cookies . |
void |
clear()
Clears all cookies.
|
boolean |
clearExpired(Date date)
Removes all of
cookies in this HTTP state
that have expired by the specified date . |
List<org.apache.http.cookie.Cookie> |
getCookies()
Returns an immutable array of
cookies that this HTTP
state currently contains. |
String |
toString() |
public ThrottledFetcher.OurBasicCookieStore()
public void addCookie(org.apache.http.cookie.Cookie cookie)
HTTP 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.addCookie
in interface org.apache.http.client.CookieStore
cookie
- the cookie
to be addedaddCookies(Cookie[])
public void addCookies(org.apache.http.cookie.Cookie[] cookies)
HTTP cookies
. Cookies are added individually and
in the given array order. If any of the given cookies has already expired it will
not be added, but existing values will still be removed.cookies
- the cookies
to be addedaddCookie(Cookie)
public List<org.apache.http.cookie.Cookie> getCookies()
cookies
that this HTTP
state currently contains.getCookies
in interface org.apache.http.client.CookieStore
cookies
.public boolean clearExpired(Date date)
cookies
in this HTTP state
that have expired by the specified date
.clearExpired
in interface org.apache.http.client.CookieStore
Cookie.isExpired(Date)
public void clear()
clear
in interface org.apache.http.client.CookieStore