See: Description
| Interface | Description |
|---|---|
| AsyncInvocationInterceptor |
Implementations of this interface can intercept asynchronous method
invocations.
|
| AsyncInvocationInterceptorFactory |
This is a provider interface intended for intercepting asynchronous method
invocations.
|
| ResponseExceptionMapper<T extends java.lang.Throwable> |
Converts an JAX-RS Response object into an Exception.
|
@RegisterProvider(UnknownWidgetExceptionMapper.class)
public interface MyClientService {
@GET
@Path("/myService/{id}")
Widget getWidget(@PathParam("id") String id) throws UnknownWidgetException;
}
...
public class UnknownWidgetExceptionMapper implements ResponseExceptionMapper {
@Override
UnknownWidgetException toThrowable(Response response) {
String msg = "Could not find widget with ID of " + response.getHeaderString("WidgetId");
return new UnknownWidgetException(msg)
}
}