Interface ResponseExceptionMapper<T extends Throwable>
public interface ResponseExceptionMapper<T extends Throwable>
Converts an JAX-RS Response object into an Exception.
-
Field Summary
-
Method Summary
Modifier and TypeMethodDescriptiondefault int
The priority of this mapper.default boolean
handles
(int status, MultivaluedMap<String, Object> headers) Whether or not this mapper will be used for the given response.toThrowable
(Response response) Converts a given Response into a Throwable.
-
Field Details
-
DEFAULT_PRIORITY
static final int DEFAULT_PRIORITY- See Also:
-
-
Method Details
-
toThrowable
Converts a given Response into a Throwable. The runtime will throw this if it is non-null AND if it is possible to throw given the client method's signature. If this method reads the response body as a stream it must ensure that it resets the stream.- Parameters:
response
- the JAX-RS response processed from the underlying client- Returns:
- A throwable, if this mapper could convert the response.
-
handles
Whether or not this mapper will be used for the given response. By default, any response code of 400 or higher will be handled. Individual mappers may override this method if they want to more narrowly focus on certain response codes or headers.- Parameters:
status
- the response status code indicating the HTTP responseheaders
- the headers from the HTTP response- Returns:
- whether or not this mapper can convert the Response to a Throwable
-
getPriority
default int getPriority()The priority of this mapper. By default, it will use thePriority
annotation's value as the priority. If no annotation is present, it uses a default priority ofPriorities.USER
.- Returns:
- the priority of this mapper
-