/* * Copyright 2005-2010 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.springframework.ws.server.endpoint.interceptor; import javax.xml.transform.Source; import org.springframework.ws.WebServiceMessage; import org.springframework.ws.server.endpoint.AbstractLoggingInterceptor; /** * Simple {@link org.springframework.ws.server.EndpointInterceptor EndpointInterceptor} that logs the payload of request * and response messages. * * <p>By default, both request and response messages are logged, but this behaviour can be changed using the {@link * #logRequest} and {@link #logResponse} properties. * * @author Arjen Poutsma * @see #setLogRequest(boolean) * @see #setLogResponse(boolean) * @since 1.0.0 */ public class PayloadLoggingInterceptor extends AbstractLoggingInterceptor { @Override protected Source getSource(WebServiceMessage message) { return message.getPayloadSource(); } }