Java java.net CookieStore fields, constructors, methods, implement or subclass

Example usage for Java java.net CookieStore fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for java.net CookieStore.

The text is from its open source code.

Implementation

java.net.CookieStore has the following implementations.
Click this link to see all its implementation.

Method

voidadd(URI uri, HttpCookie cookie)
Adds one HTTP cookie to the store.
Listget(URI uri)
Retrieve cookies associated with given URI, or whose domain matches the given URI.
ListgetCookies()
Get all not-expired cookies in cookie store.
ListgetURIs()
Get all URIs which identify the cookies in this cookie store.
booleanremove(URI uri, HttpCookie cookie)
Remove a cookie from store.
booleanremoveAll()
Remove all cookies in this cookie store.
StringtoString()
Returns a string representation of the object.