public interface CookieStore
CookieManager will call CookieStore.add to save cookies for every incoming HTTP response, and call CookieStore.get to retrieve cookie for every outgoing HTTP request. A CookieStore is responsible for removing HttpCookie instances which have expired.
| Modifier and Type | Method and Description |
|---|---|
void |
add(URI
Adds one HTTP cookie to the store.
|
List |
get(URI
Retrieve cookies associated with given URI, or whose domain matches the given URI.
|
List |
getCookies()
Get all not-expired cookies in cookie store.
|
List |
getURIs()
Get all URIs which identify the cookies in this cookie store.
|
boolean |
remove(URI
Remove a cookie from store.
|
boolean |
removeAll()
Remove all cookies in this cookie store.
|
void add(URIuri, HttpCookie cookie)
A cookie to store may or may not be associated with an URI. If it is not associated with an URI, the cookie's domain and path attribute will indicate where it comes from. If it is associated with an URI and its domain and path attribute are not specified, given URI will indicate where this cookie comes from.
If a cookie corresponding to the given URI already exists, then it is replaced with the new one.
uri - the uri this cookie associated with. if
null, this cookie will not be associated with an URI
cookie - the cookie to store
NullPointerException - if
cookie is
null
get(java.net.URI)
List<HttpCookie > get(URI uri)
uri - the uri associated with the cookies to be returned
NullPointerException - if
uri is
null
add(java.net.URI, java.net.HttpCookie)
List<HttpCookie > getCookies()
List<URI > getURIs()
boolean remove(URIuri, HttpCookie cookie)
uri - the uri this cookie associated with. if
null, the cookie to be removed is not associated with an URI when added; if not
null, the cookie to be removed is associated with the given URI when added.
cookie - the cookie to remove
true if this store contained the specified cookie
NullPointerException - if
cookie is
null
boolean removeAll()
true if this store changed as a result of the call