| Package | Description |
|---|---|
| java.net |
Provides the classes for implementing networking applications.
|
| Modifier and Type | Method and Description |
|---|---|
List |
CookieStore.get(URI
Retrieve cookies associated with given URI, or whose domain matches the given URI.
|
List |
CookieStore.getCookies()
Get all not-expired cookies in cookie store.
|
static List |
HttpCookie.parse(String
Constructs cookies from set-cookie or set-cookie2 header string.
|
| Modifier and Type | Method and Description |
|---|---|
void |
CookieStore.add(URI
Adds one HTTP cookie to the store.
|
boolean |
CookieStore.remove(URI
Remove a cookie from store.
|
boolean |
CookiePolicy.shouldAccept(URI
Will be called to see whether or not this cookie should be accepted.
|