| Package | Description |
|---|---|
| javax.ws.rs.client |
The Client API
|
| javax.ws.rs.container |
Container-specific 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.client.spi |
Jersey client SPI classes/interfaces.
|
| org.glassfish.jersey.message.internal |
Common Jersey internal messaging classes.
|
| org.glassfish.jersey.server |
Jersey server-side classes.
|
| 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 |
|---|---|
Map<String,Cookie> |
ClientRequest.getCookies() |
| Modifier and Type | Method and Description |
|---|---|
void |
ClientRequest.cookie(Cookie cookie)
Add new cookie to the message headers.
|
JerseyInvocation.Builder |
JerseyInvocation.Builder.cookie(Cookie cookie) |
| Modifier and Type | Method and Description |
|---|---|
Map<String,Cookie> |
InvocationBuilderListener.InvocationBuilderContext.getCookies()
Get any cookies that accompanied the request.
|
| Modifier and Type | Method and Description |
|---|---|
InvocationBuilderListener.InvocationBuilderContext |
InvocationBuilderListener.InvocationBuilderContext.cookie(Cookie cookie)
Add a cookie to be set.
|
| Modifier and Type | Method and Description |
|---|---|
Cookie |
CookieProvider.fromString(String header) |
static Cookie |
CookiesParser.parseCookie(String header) |
static Cookie |
HttpHeaderReader.readCookie(String header)
TODO javadoc.
|
| Modifier and Type | Method and Description |
|---|---|
Map<String,Cookie> |
MessageHeaderMethods.getRequestCookies()
Get any cookies that accompanied the message.
|
static Map<String,Cookie> |
CookiesParser.parseCookies(String header) |
static Map<String,Cookie> |
HttpHeaderReader.readCookies(String header)
TODO javadoc.
|
| Modifier and Type | Method and Description |
|---|---|
String |
CookieProvider.toString(Cookie cookie) |
| Modifier and Type | Method and Description |
|---|---|
Map<String,Cookie> |
ContainerRequest.getCookies() |
Copyright © 2007-2024, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.