Example usage for Java java.net CookieStore fields, constructors, methods, implement or subclass
The text is from its open source code.
void | add(URI uri, HttpCookie cookie) Adds one HTTP cookie to the store. |
List | get(URI 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 uri, HttpCookie cookie) Remove a cookie from store. |
boolean | removeAll() Remove all cookies in this cookie store. |
String | toString() Returns a string representation of the object. |