INT-842 moved AbstractRemotingOutboundGatewayParser to core config.xml package and renamed AbstractOutboundGatewayParser

This commit is contained in:
Mark Fisher
2010-04-30 22:01:08 +00:00
parent db2b3494e8
commit 2eda315aa6
4 changed files with 13 additions and 14 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2002-2009 the original author or authors.
* Copyright 2002-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.
@@ -22,7 +22,7 @@ import org.springframework.beans.factory.config.ConstructorArgumentValues;
import org.springframework.beans.factory.support.BeanDefinitionBuilder;
import org.springframework.beans.factory.support.RootBeanDefinition;
import org.springframework.beans.factory.xml.ParserContext;
import org.springframework.integration.adapter.config.AbstractRemotingOutboundGatewayParser;
import org.springframework.integration.config.xml.AbstractOutboundGatewayParser;
import org.springframework.integration.config.xml.IntegrationNamespaceUtils;
import org.springframework.util.StringUtils;
@@ -32,7 +32,7 @@ import org.springframework.util.StringUtils;
* @author Mark Fisher
* @author Jonas Partner
*/
public class WebServiceOutboundGatewayParser extends AbstractRemotingOutboundGatewayParser {
public class WebServiceOutboundGatewayParser extends AbstractOutboundGatewayParser {
private static final String BASE_PACKAGE = "org.springframework.integration.ws";