From 32c21d3879050ef564afc64b3bab79b0094a2e0c Mon Sep 17 00:00:00 2001 From: Fabrizio Cucci Date: Fri, 22 Jul 2016 09:32:47 +0100 Subject: [PATCH] Fixed minor documentation issues The following corrections have been applied: - "The response can also be aborted..." has been replaced with "The request can also be aborted..."; - "abort" has been replaced with "abortWith". --- docs/src/main/docbook/filters.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/main/docbook/filters.xml b/docs/src/main/docbook/filters.xml index 580a039627..57d57297ff 100644 --- a/docs/src/main/docbook/filters.xml +++ b/docs/src/main/docbook/filters.xml @@ -243,9 +243,9 @@ public class PreMatchingFilter implements ContainerRequestFilter {
Client filters - Client filters are similar to container filters. The response can also be aborted + Client filters are similar to container filters. The request can also be aborted in the &jaxrs.client.ClientRequestFilter; which would cause that no request will actually be sent to the server at all. - A new response is passed to the abort method. This response will be used and delivered + A new response is passed to the abortWith method. This response will be used and delivered as a result of the request invocation. Such a response goes through the client response filters. This is similar to what happens on the server side. The process is shown in the following example: