| Package | Description |
|---|---|
| javax.ws.rs.client |
The Client API
|
| org.glassfish.jersey.client |
Jersey client-side classes.
|
| org.glassfish.jersey.client.filter |
Provides core client filters.
|
| org.glassfish.jersey.client.spi |
Jersey client SPI classes/interfaces.
|
| Modifier and Type | Method and Description |
|---|---|
void |
ClientRequestFilter.filter(ClientRequestContext requestContext)
Filter method called before a request has been dispatched to a client
transport layer.
|
void |
ClientResponseFilter.filter(ClientRequestContext requestContext,
ClientResponseContext responseContext)
Filter method called after a response has been provided for a request
(either by a
request filter or when the
HTTP invocation returns). |
| Modifier and Type | Class and Description |
|---|---|
class |
ClientRequest
Jersey client request context.
|
| Modifier and Type | Method and Description |
|---|---|
static InjectionManager |
InjectionManagerClientProvider.getInjectionManager(ClientRequestContext clientRequestContext)
Extract and return injection manager from
clientRequestContext. |
| Modifier and Type | Method and Description |
|---|---|
void |
CsrfProtectionFilter.filter(ClientRequestContext rc) |
void |
EncodingFilter.filter(ClientRequestContext request) |
| Modifier and Type | Method and Description |
|---|---|
void |
PostInvocationInterceptor.afterRequest(ClientRequestContext requestContext,
ClientResponseContext responseContext)
The method is invoked after a request when no
Throwable is thrown, or the Throwables are
resolved by previous PostInvocationInterceptor. |
void |
PreInvocationInterceptor.beforeRequest(ClientRequestContext requestContext)
The method invoked before the request starts.
|
void |
PostInvocationInterceptor.onException(ClientRequestContext requestContext,
PostInvocationInterceptor.ExceptionContext exceptionContext)
The method is invoked after a
Throwable is caught during the client request chain processing. |
Copyright © 2007-2024, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.