Package | Description |
---|---|
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.plugins.delegates | |
org.jboss.resteasy.specimpl | |
org.jboss.resteasy.util |
Modifier and Type | Method and Description |
---|---|
Map<String,Cookie> |
ClientRequestContext.getCookies()
Get any cookies that accompanied the request.
|
Modifier and Type | Method and Description |
---|---|
Invocation.Builder |
Invocation.Builder.cookie(Cookie cookie)
Add a cookie to be set.
|
Modifier and Type | Method and Description |
---|---|
Map<String,Cookie> |
ContainerRequestContext.getCookies()
Get any cookies that accompanied the request.
|
Modifier and Type | Class and Description |
---|---|
class |
NewCookie
Used to create a new HTTP cookie, transferred in a response.
|
Modifier and Type | Method and Description |
---|---|
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. |
Modifier and Type | Method and Description |
---|---|
Map<String,Cookie> |
HttpHeaders.getCookies()
Get any cookies that accompanied the request.
|
Constructor and Description |
---|
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.
|
Modifier and Type | Method and Description |
---|---|
ClientRequest |
ClientRequest.cookie(Cookie cookie)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
Map<String,Cookie> |
ClientRequestHeaders.getCookies() |
Map<String,Cookie> |
ClientRequestContextImpl.getCookies() |
Modifier and Type | Method and Description |
---|---|
void |
ClientRequestHeaders.cookie(Cookie cookie) |
Invocation.Builder |
ClientInvocationBuilder.cookie(Cookie cookie) |
Modifier and Type | Method and Description |
---|---|
Map<String,Cookie> |
PreMatchContainerRequestContext.getCookies() |
Modifier and Type | Method and Description |
---|---|
Cookie |
CookieHeaderDelegate.fromString(String value) |
Modifier and Type | Method and Description |
---|---|
String |
CookieHeaderDelegate.toString(Cookie value) |
Modifier and Type | Method and Description |
---|---|
Map<String,Cookie> |
ResteasyHttpHeaders.getCookies() |
Map<String,Cookie> |
ResteasyHttpHeaders.getMutableCookies() |
Modifier and Type | Method and Description |
---|---|
void |
ResteasyHttpHeaders.setCookies(Map<String,Cookie> cookies) |
Constructor and Description |
---|
ResteasyHttpHeaders(MultivaluedMap<String,String> requestHeaders,
Map<String,Cookie> cookies) |
Modifier and Type | Method and Description |
---|---|
static List<Cookie> |
CookieParser.parseCookies(String cookieHeader) |
Copyright © 2014. All Rights Reserved.