Implement ClientExecutionInterceptors

WARNING - TOPIC NOT WRITTEN - TOPIC ID: 2924

This topic has not yet been written. The content below is from the topic description.
These interceptors must be annotated with @ClientInterceptor and @Provider. public interface ClientExecutionInterceptor { ClientResponse execute(ClientExecutionContext ctx) throws Exception; } public interface ClientExecutionContext { ClientRequest getRequest(); ClientResponse proceed() throws Exception; } The work work in the same pattern as MessageBodyReader/WriterInterceptors in that you must call proceed() unless you want to abort the invocation.