INT-1306 renamed AbstractMessagingGateway to MessagingGatewaySupport

This commit is contained in:
Mark Fisher
2010-09-03 04:02:49 +00:00
parent 400832836d
commit 2f5dc0c202
10 changed files with 20 additions and 20 deletions

View File

@@ -26,7 +26,7 @@ import org.springframework.context.SmartLifecycle;
import org.springframework.expression.ExpressionException;
import org.springframework.integration.MessageChannel;
import org.springframework.integration.MessagingException;
import org.springframework.integration.gateway.AbstractMessagingGateway;
import org.springframework.integration.gateway.MessagingGatewaySupport;
import org.springframework.oxm.Marshaller;
import org.springframework.oxm.Unmarshaller;
import org.springframework.scheduling.TaskScheduler;
@@ -189,7 +189,7 @@ public class MarshallingWebServiceInboundGateway extends AbstractMarshallingPayl
return 0;
}
private static class GatewayDelegate extends AbstractMessagingGateway {
private static class GatewayDelegate extends MessagingGatewaySupport {
public Object sendAndReceive(Object request) {
return super.sendAndReceive(request);

View File

@@ -29,7 +29,7 @@ import org.w3c.dom.Document;
import org.springframework.expression.ExpressionException;
import org.springframework.integration.Message;
import org.springframework.integration.MessagingException;
import org.springframework.integration.gateway.AbstractMessagingGateway;
import org.springframework.integration.gateway.MessagingGatewaySupport;
import org.springframework.integration.support.MessageBuilder;
import org.springframework.util.Assert;
import org.springframework.ws.WebServiceMessage;
@@ -45,7 +45,7 @@ import org.springframework.xml.transform.TransformerObjectSupport;
* @author Mark Fisher
* @since 1.0.2
*/
public class SimpleWebServiceInboundGateway extends AbstractMessagingGateway implements MessageEndpoint {
public class SimpleWebServiceInboundGateway extends MessagingGatewaySupport implements MessageEndpoint {
private final TransformerSupportDelegate transformerSupportDelegate = new TransformerSupportDelegate();