Package org.eclipse.jetty.util
Class HttpCookieStore
- java.lang.Object
-
- org.eclipse.jetty.util.HttpCookieStore
-
- All Implemented Interfaces:
CookieStore
@Deprecated(since="2021-05-27") public class HttpCookieStore extends Object implements CookieStore
Deprecated.The Eclipse Jetty and Apache Felix Http Jetty packages are no longer supported.Implementation ofCookieStorethat delegates to an instance created byCookieManagerviaCookieManager.getCookieStore().
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classHttpCookieStore.EmptyDeprecated.
-
Constructor Summary
Constructors Constructor Description HttpCookieStore()Deprecated.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voidadd(URI uri, HttpCookie cookie)Deprecated.List<HttpCookie>get(URI uri)Deprecated.List<HttpCookie>getCookies()Deprecated.List<URI>getURIs()Deprecated.static List<HttpCookie>matchPath(URI uri, List<HttpCookie> cookies)Deprecated.booleanremove(URI uri, HttpCookie cookie)Deprecated.booleanremoveAll()Deprecated.
-
-
-
Method Detail
-
add
public void add(URI uri, HttpCookie cookie)
Deprecated.- Specified by:
addin interfaceCookieStore
-
get
public List<HttpCookie> get(URI uri)
Deprecated.- Specified by:
getin interfaceCookieStore
-
getCookies
public List<HttpCookie> getCookies()
Deprecated.- Specified by:
getCookiesin interfaceCookieStore
-
getURIs
public List<URI> getURIs()
Deprecated.- Specified by:
getURIsin interfaceCookieStore
-
remove
public boolean remove(URI uri, HttpCookie cookie)
Deprecated.- Specified by:
removein interfaceCookieStore
-
removeAll
public boolean removeAll()
Deprecated.- Specified by:
removeAllin interfaceCookieStore
-
matchPath
public static List<HttpCookie> matchPath(URI uri, List<HttpCookie> cookies)
Deprecated.
-
-