INT-1306 renamed AbstractMessagingGateway to MessagingGatewaySupport
This commit is contained in:
@@ -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);
|
||||
|
||||
@@ -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();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user