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.jboss.resteasy.client   
org.jboss.resteasy.client.jaxrs.internal   
org.jboss.resteasy.core.interception   
org.jboss.resteasy.specimpl   
 

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.
 

Uses of Cookie in org.jboss.resteasy.client
 

Methods in org.jboss.resteasy.client with parameters of type Cookie
 ClientRequest ClientRequest.cookie(Cookie cookie)
          Deprecated.  
 

Uses of Cookie in org.jboss.resteasy.client.jaxrs.internal
 

Methods in org.jboss.resteasy.client.jaxrs.internal that return types with arguments of type Cookie
 Map<String,Cookie> ClientRequestHeaders.getCookies()
           
 Map<String,Cookie> ClientRequestContextImpl.getCookies()
           
 

Methods in org.jboss.resteasy.client.jaxrs.internal with parameters of type Cookie
 void ClientRequestHeaders.cookie(Cookie cookie)
           
 Invocation.Builder ClientInvocationBuilder.cookie(Cookie cookie)
           
 

Uses of Cookie in org.jboss.resteasy.core.interception
 

Methods in org.jboss.resteasy.core.interception that return types with arguments of type Cookie
 Map<String,Cookie> PreMatchContainerRequestContext.getCookies()
           
 

Uses of Cookie in org.jboss.resteasy.specimpl
 

Methods in org.jboss.resteasy.specimpl that return types with arguments of type Cookie
 Map<String,Cookie> HttpHeadersImpl.getCookies()
           
 

Method parameters in org.jboss.resteasy.specimpl with type arguments of type Cookie
 void HttpHeadersImpl.setCookies(Map<String,Cookie> cookies)
           
 



Copyright © 2013. All Rights Reserved.