From e43e30268bfc55ea2be2f31e4337a346b0035bff Mon Sep 17 00:00:00 2001 From: Arjen Poutsma Date: Sat, 27 Oct 2007 10:42:38 +0000 Subject: [PATCH] SWS-216 --- .../endpoint/interceptor/AbstractValidatingInterceptor.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/src/main/java/org/springframework/ws/server/endpoint/interceptor/AbstractValidatingInterceptor.java b/core/src/main/java/org/springframework/ws/server/endpoint/interceptor/AbstractValidatingInterceptor.java index 7890c0f9..f91700dd 100644 --- a/core/src/main/java/org/springframework/ws/server/endpoint/interceptor/AbstractValidatingInterceptor.java +++ b/core/src/main/java/org/springframework/ws/server/endpoint/interceptor/AbstractValidatingInterceptor.java @@ -196,11 +196,11 @@ public abstract class AbstractValidatingInterceptor extends TransformerObjectSup /** * Template method that is called when the response message contains validation errors. Default implementation logs - * all errors, and returns false, i.e. do not send the response. + * all errors, and returns false, i.e. do not cot continue to process the respone interceptor chain. * * @param messageContext the message context - * @param errors the validation errors @return true to continue sending the response, - * false (the default) otherwise + * @param errors the validation errors + * @return true to continue the reponse interceptor chain, false (the default) otherwise */ protected boolean handleResponseValidationErrors(MessageContext messageContext, SAXParseException[] errors) { for (int i = 0; i < errors.length; i++) {