SWS-400 - Allow overriding handleRequest(...) in AbstractLoggingInterceptor

This commit is contained in:
Andrei Amariei
2016-06-02 11:50:43 +02:00
committed by Greg Turnquist
parent 0fc3119c03
commit 9c726cfede

View File

@@ -85,7 +85,7 @@ public abstract class AbstractLoggingInterceptor extends TransformerObjectSuppor
* @throws TransformerException when the payload cannot be transformed to a string
*/
@Override
public final boolean handleRequest(MessageContext messageContext, Object endpoint) throws TransformerException {
public boolean handleRequest(MessageContext messageContext, Object endpoint) throws TransformerException {
if (logRequest && isLogEnabled()) {
logMessageSource("Request: ", getSource(messageContext.getRequest()));
}