Package | Description |
---|---|
jakarta.ws.rs.client |
The JAX-RS client API
|
jakarta.ws.rs.container |
Container-specific JAX-RS API.
|
jakarta.ws.rs.core |
Low-level interfaces and annotations used to create RESTful service resources.
|
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)
Deprecated.
This method will be removed in a future version. Please use
RuntimeDelegate.getInstance().createHeaderDelegate(Cookie.class).fromString(value) instead.
|
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.
|
Copyright © 2018,2020 Eclipse Foundation.
Use is subject to license terms.