Uses of Class
org.restlet.data.Cookie

Packages that use Cookie
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.connector New advanced internal HTTP connector. 
org.restlet.engine.header Supports HTTP header parsing and formatting. 
org.restlet.engine.util General utilities. 
org.restlet.resource Client and server resource classes. 
org.restlet.util Various utility classes. 
 

Uses of Cookie in org.restlet.data
 

Subclasses of Cookie in org.restlet.data
 class CookieSetting
          Cookie 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
 Series<Cookie> HttpRequest.getCookies()
          Returns the cookies provided by the client.
 

Uses of Cookie in org.restlet.engine.connector
 

Methods in org.restlet.engine.connector that return types with arguments of type Cookie
 Series<Cookie> HttpInboundRequest.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
static Cookie CookieReader.read(String cookie)
          Parses the given String to a Cookie
 Cookie CookieReader.readValue()
           
 

Methods in org.restlet.engine.header with parameters of type Cookie
 CookieWriter CookieWriter.append(Cookie cookie)
           
static String CookieWriter.write(Cookie cookie)
          Writes a cookie.
 

Method parameters in org.restlet.engine.header with type arguments of type Cookie
 CookieWriter CookieWriter.append(List<Cookie> cookies)
          Appends a list of cookies as an HTTP header.
static void CookieWriter.getCookies(List<Cookie> source, Map<String,Cookie> destination)
          Gets the cookies whose name is a key in the given map.
static void CookieWriter.getCookies(List<Cookie> source, Map<String,Cookie> destination)
          Gets the cookies whose name is a key in the given map.
static String CookieWriter.write(List<Cookie> cookies)
          Writes a cookie.
 

Uses of Cookie in org.restlet.engine.util
 

Constructor parameters in org.restlet.engine.util with type arguments of type Cookie
CookieSeries(List<Cookie> delegate)
          Deprecated. Constructor.
 

Uses of Cookie in org.restlet.resource
 

Methods in org.restlet.resource that return types with arguments of type Cookie
 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
 void ClientResource.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
 Series<Cookie> WrapperRequest.getCookies()
          Returns the cookies provided by the client.
 

Method parameters in org.restlet.util with type arguments of type Cookie
 void WrapperRequest.setCookies(Series<Cookie> cookies)
           
 



Copyright © 2005-2014 Restlet.