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

@@ -41,7 +41,7 @@ import org.springframework.http.server.ServletServerHttpRequest;
import org.springframework.http.server.ServletServerHttpResponse;
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.mapping.HeaderMapper;
import org.springframework.integration.support.MessageBuilder;
import org.springframework.util.Assert;
@@ -75,7 +75,7 @@ import org.springframework.web.servlet.DispatcherServlet;
* @author Mark Fisher
* @since 2.0
*/
abstract class HttpRequestHandlingEndpointSupport extends AbstractMessagingGateway {
abstract class HttpRequestHandlingEndpointSupport extends MessagingGatewaySupport {
private static final boolean jaxb2Present = ClassUtils.isPresent("javax.xml.bind.Binder",
HttpRequestHandlingEndpointSupport.class.getClassLoader());