Interface ReaderInterceptor
public interface ReaderInterceptor
Interface for message body reader interceptors that wrap around calls
to
MessageBodyReader.readFrom(Class, Type, Annotation[], MediaType, MultivaluedMap, InputStream).
Providers implementing ReaderInterceptor contract must be either programmatically
registered in a JAX-RS runtime or must be annotated with
@Provider annotation to be automatically discovered
by the JAX-RS runtime during a provider scanning phase.
Message body interceptor instances may also be discovered and
bound dynamically to particular resource methods.
- Since:
- 2.0
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionaroundReadFrom(ReaderInterceptorContext context) Interceptor method wrapping calls toMessageBodyReader.readFrom(Class, Type, Annotation[], MediaType, MultivaluedMap, InputStream)method.
-
Method Details
-
aroundReadFrom
Interceptor method wrapping calls toMessageBodyReader.readFrom(Class, Type, Annotation[], MediaType, MultivaluedMap, InputStream)method. The parameters of the wrapped method called are available fromcontext. Implementations of this method SHOULD explicitly callReaderInterceptorContext.proceed()to invoke the next interceptor in the chain, and ultimately the wrappedMessageBodyReader.readFrom(Class, Type, Annotation[], MediaType, MultivaluedMap, InputStream)method.- Parameters:
context- invocation context.- Returns:
- result of next interceptor invoked or the wrapped method if last interceptor in chain.
- Throws:
IOException- if an IO error arises or is thrown by the wrappedMessageBodyReader.readFrommethod.WebApplicationException- thrown by the wrappedMessageBodyReader.readFrommethod.
-