Package jakarta.ws.rs.ext
Interface WriterInterceptor
- 
public interface WriterInterceptorInterface for message body writer interceptors that wrap around calls toMessageBodyWriter.writeTo(T, java.lang.Class<?>, java.lang.reflect.Type, java.lang.annotation.Annotation[], jakarta.ws.rs.core.MediaType, jakarta.ws.rs.core.MultivaluedMap<java.lang.String, java.lang.Object>, java.io.OutputStream).Providers implementing
WriterInterceptorcontract must be either programmatically registered in a JAX-RS runtime or must be annotated with@Providerannotation to be automatically discovered by the JAX-RS runtime during a provider scanning phase. Message body interceptor instances may also be discovered and bounddynamicallyto particular resource methods.- Since:
 - 2.0
 - Author:
 - Santiago Pericas-Geertsen, Bill Burke, Marek Potociar
 - See Also:
 MessageBodyWriter
 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaroundWriteTo(WriterInterceptorContext context) 
 - 
 
- 
- 
Method Detail
- 
aroundWriteTo
void aroundWriteTo(WriterInterceptorContext context) throws IOException, WebApplicationException
Interceptor method wrapping calls toMessageBodyWriter.writeTo(T, java.lang.Class<?>, java.lang.reflect.Type, java.lang.annotation.Annotation[], jakarta.ws.rs.core.MediaType, jakarta.ws.rs.core.MultivaluedMap<java.lang.String, java.lang.Object>, java.io.OutputStream)method. The parameters of the wrapped method called are available fromcontext. Implementations of this method SHOULD explicitly callWriterInterceptorContext.proceed()to invoke the next interceptor in the chain, and ultimately the wrappedMessageBodyWriter.writeTomethod.- Parameters:
 context- invocation context.- Throws:
 IOException- if an IO error arises or is thrown by the wrappedMessageBodyWriter.writeTomethod.WebApplicationException- thrown by the wrappedMessageBodyWriter.writeTomethod.
 
 - 
 
 -