AbstractMessageHandlingEndpoint is now AbstractReplyProducingMessageConsumer.

This commit is contained in:
Mark Fisher
2008-10-06 20:59:55 +00:00
parent b567e9570d
commit f12c6b3748
14 changed files with 41 additions and 39 deletions

View File

@@ -19,7 +19,7 @@ package org.springframework.integration.ws.handler;
import java.io.IOException;
import java.net.URI;
import org.springframework.integration.endpoint.AbstractMessageHandlingEndpoint;
import org.springframework.integration.endpoint.AbstractReplyProducingMessageConsumer;
import org.springframework.integration.message.GenericMessage;
import org.springframework.integration.message.Message;
import org.springframework.util.Assert;
@@ -37,7 +37,7 @@ import org.springframework.ws.transport.WebServiceMessageSender;
*
* @author Mark Fisher
*/
public abstract class AbstractWebServiceHandler extends AbstractMessageHandlingEndpoint {
public abstract class AbstractWebServiceHandler extends AbstractReplyProducingMessageConsumer {
public static final String SOAP_ACTION_PROPERTY_KEY = "_ws.soapAction";