Uses of Class
javax.ws.rs.core.Cookie

Packages that use Cookie
com.sun.jersey.api.client Provides support for client-side communication with HTTP-based RESTful Web services. 
com.sun.jersey.core.header.reader Provides support for reading HTTP headers. 
com.sun.jersey.core.impl.provider.header   
com.sun.jersey.spi.container Provides support for containers and the web application that manages resource classes. 
javax.ws.rs.core Low-level interfaces and annotations used to create RESTful service resources. 
 

Uses of Cookie in com.sun.jersey.api.client
 

Methods in com.sun.jersey.api.client with parameters of type Cookie
 T PartialRequestBuilder.cookie(Cookie cookie)
           
 T RequestBuilder.cookie(Cookie cookie)
          Add a cookie to be set.
 WebResource.Builder WebResource.cookie(Cookie cookie)
           
 AsyncWebResource.Builder AsyncWebResource.cookie(Cookie cookie)
           
 ViewResource.Builder ViewResource.cookie(Cookie cookie)
           
 AsyncViewResource.Builder AsyncViewResource.cookie(Cookie cookie)
           
 

Uses of Cookie in com.sun.jersey.core.header.reader
 

Methods in com.sun.jersey.core.header.reader that return Cookie
static Cookie HttpHeaderReader.readCookie(String header)
           
 

Methods in com.sun.jersey.core.header.reader that return types with arguments of type Cookie
static Map<String,Cookie> HttpHeaderReader.readCookies(String header)
           
 

Uses of Cookie in com.sun.jersey.core.impl.provider.header
 

Methods in com.sun.jersey.core.impl.provider.header that return Cookie
 Cookie CookieProvider.fromString(String header)
           
 

Methods in com.sun.jersey.core.impl.provider.header with parameters of type Cookie
 String CookieProvider.toString(Cookie cookie)
           
 

Uses of Cookie in com.sun.jersey.spi.container
 

Methods in com.sun.jersey.spi.container that return types with arguments of type Cookie
 Map<String,Cookie> ContainerRequest.getCookies()
           
 Map<String,Cookie> AdaptingContainerRequest.getCookies()
           
 

Uses of Cookie in javax.ws.rs.core
 

Subclasses of Cookie in javax.ws.rs.core
 class NewCookie
          Used to create a new HTTP cookie, transferred in a response.
 

Methods in javax.ws.rs.core that return Cookie
 Cookie NewCookie.toCookie()
          Obtain a new instance of a Cookie with the same name, value, path, domain and version as this NewCookie.
static Cookie Cookie.valueOf(String value)
          Creates a new instance of Cookie by parsing the supplied string.
 

Methods in javax.ws.rs.core that return types with arguments of type Cookie
 Map<String,Cookie> HttpHeaders.getCookies()
          Get any cookies that accompanied the request.
 

Constructors in javax.ws.rs.core with parameters of type Cookie
NewCookie(Cookie cookie)
          Create a new instance copying the information in the supplied cookie.
NewCookie(Cookie cookie, String comment, int maxAge, boolean secure)
          Create a new instance supplementing the information in the supplied cookie.
 



Copyright © 2013 Oracle Corporation. All Rights Reserved.