Uses of Class
org.restlet.data.Cookie
-
Packages that use Cookie Package Description org.restlet Core classes of the API.org.restlet.data Information exchanged by components.org.restlet.engine.adapter Adapters between low-level HTTP calls and high-level Restlet Request and Response objects.org.restlet.engine.header Supports HTTP header parsing and formatting.org.restlet.ext.jaxrs.internal.util org.restlet.ext.nio.internal.request org.restlet.resource Client and server resource classes.org.restlet.util Various utility classes. -
-
Uses of Cookie in org.restlet
Fields in org.restlet with type parameters of type Cookie Modifier and Type Field Description private Series<Cookie>Request. cookiesThe cookies provided by the client.Methods in org.restlet that return types with arguments of type Cookie Modifier and Type Method Description Series<Cookie>Request. getCookies()Returns the modifiable series of cookies provided by the client.Method parameters in org.restlet with type arguments of type Cookie Modifier and Type Method Description voidRequest. setCookies(Series<Cookie> cookies)Sets the modifiable series of cookies provided by the client. -
Uses of Cookie in org.restlet.data
Subclasses of Cookie in org.restlet.data Modifier and Type Class Description classCookieSettingCookie setting provided by a server. -
Uses of Cookie in org.restlet.engine.adapter
Methods in org.restlet.engine.adapter that return types with arguments of type Cookie Modifier and Type Method Description Series<Cookie>HttpRequest. getCookies()Returns the cookies provided by the client. -
Uses of Cookie in org.restlet.engine.header
Methods in org.restlet.engine.header that return Cookie Modifier and Type Method Description static CookieCookieReader. read(java.lang.String cookie)Parses the given String to a CookieCookieCookieReader. readValue()Methods in org.restlet.engine.header with parameters of type Cookie Modifier and Type Method Description CookieWriterCookieWriter. append(Cookie cookie)static java.lang.StringCookieWriter. write(Cookie cookie)Writes a cookie.Method parameters in org.restlet.engine.header with type arguments of type Cookie Modifier and Type Method Description CookieWriterCookieWriter. append(java.util.List<Cookie> cookies)Appends a list of cookies as an HTTP header.static voidCookieWriter. getCookies(java.util.List<Cookie> source, java.util.Map<java.lang.String,Cookie> destination)Gets the cookies whose name is a key in the given map.static voidCookieWriter. getCookies(java.util.List<Cookie> source, java.util.Map<java.lang.String,Cookie> destination)Gets the cookies whose name is a key in the given map.static java.lang.StringCookieWriter. write(java.util.List<Cookie> cookies)Writes a cookie. -
Uses of Cookie in org.restlet.ext.jaxrs.internal.util
Methods in org.restlet.ext.jaxrs.internal.util that return Cookie Modifier and Type Method Description static CookieConverter. toRestletCookie(javax.ws.rs.core.Cookie jaxRsCookie)Deprecated.Converts a JAX-RS Cookie to a Restlet CookieMethods in org.restlet.ext.jaxrs.internal.util with parameters of type Cookie Modifier and Type Method Description static javax.ws.rs.core.CookieConverter. toJaxRsCookie(Cookie restletCookie)Deprecated.Converts a Restlet Cookie to a JAX-RS Cookie -
Uses of Cookie in org.restlet.ext.nio.internal.request
Methods in org.restlet.ext.nio.internal.request that return types with arguments of type Cookie Modifier and Type Method Description Series<Cookie>HttpInboundRequest. getCookies()Deprecated.Returns the cookies provided by the client. -
Uses of Cookie in org.restlet.resource
Methods in org.restlet.resource that return types with arguments of type Cookie Modifier and Type Method Description Series<Cookie>Resource. getCookies()Returns the modifiable series of cookies provided by the client.Method parameters in org.restlet.resource with type arguments of type Cookie Modifier and Type Method Description voidClientResource. setCookies(Series<Cookie> cookies)Sets the cookies provided by the client. -
Uses of Cookie in org.restlet.util
Methods in org.restlet.util that return types with arguments of type Cookie Modifier and Type Method Description Series<Cookie>WrapperRequest. getCookies()Returns the cookies provided by the client.Method parameters in org.restlet.util with type arguments of type Cookie Modifier and Type Method Description voidWrapperRequest. setCookies(Series<Cookie> cookies)
-