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

Packages that use Cookie
javax.ws.rs.client The JAX-RS client API 
javax.ws.rs.container Container-specific JAX-RS API. 
javax.ws.rs.core Low-level interfaces and annotations used to create RESTful service resources. 
org.glassfish.jersey.client Jersey client-side classes. 
org.glassfish.jersey.internal.inject Common Jersey internal injection utility classes. 
org.glassfish.jersey.message.internal Common Jersey internal messaging classes. 
org.glassfish.jersey.server Jersey server-side classes. 
 

Uses of Cookie in javax.ws.rs.client
 

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

Methods in javax.ws.rs.client with parameters of type Cookie
 Invocation.Builder Invocation.Builder.cookie(Cookie cookie)
          Add a cookie to be set.
 

Uses of Cookie in javax.ws.rs.container
 

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

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.
NewCookie(Cookie cookie, String comment, int maxAge, Date expiry, boolean secure, boolean httpOnly)
          Create a new instance supplementing the information in the supplied cookie.
 

Uses of Cookie in org.glassfish.jersey.client
 

Methods in org.glassfish.jersey.client that return types with arguments of type Cookie
 Map<String,Cookie> ClientRequest.getCookies()
           
 

Methods in org.glassfish.jersey.client with parameters of type Cookie
 void ClientRequest.cookie(Cookie cookie)
          Add new cookie to the message headers.
 JerseyInvocation.Builder JerseyInvocation.Builder.cookie(Cookie cookie)
           
 

Uses of Cookie in org.glassfish.jersey.internal.inject
 

Methods in org.glassfish.jersey.internal.inject that return types with arguments of type Cookie
 Map<String,Cookie> HttpHeadersInjectee.getCookies()
           
 

Uses of Cookie in org.glassfish.jersey.message.internal
 

Methods in org.glassfish.jersey.message.internal that return Cookie
 Cookie CookieProvider.fromString(String header)
           
static Cookie HttpHeaderReader.readCookie(String header)
           
 

Methods in org.glassfish.jersey.message.internal that return types with arguments of type Cookie
 Map<String,Cookie> InboundMessageContext.getRequestCookies()
          Get any cookies that accompanied the request.
 Map<String,Cookie> OutboundMessageContext.getRequestCookies()
          Get any cookies that accompanied the message.
static Map<String,Cookie> HttpHeaderReader.readCookies(String header)
           
 

Methods in org.glassfish.jersey.message.internal with parameters of type Cookie
 String CookieProvider.toString(Cookie cookie)
           
 

Uses of Cookie in org.glassfish.jersey.server
 

Methods in org.glassfish.jersey.server that return types with arguments of type Cookie
 Map<String,Cookie> ContainerRequest.getCookies()
           
 



Copyright © 2007-2014, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.