Moved GatewayParser, AbstractTransformerParser, and SimpleHeaderEnricherParser into org.springframework.integration.config to avoid dependency cycles.

This commit is contained in:
Mark Fisher
2008-10-10 17:11:18 +00:00
parent 0dfe9ca191
commit 11e53cf7e7
11 changed files with 46 additions and 52 deletions

View File

@@ -14,14 +14,13 @@
* limitations under the License.
*/
package org.springframework.integration.transformer.config;
package org.springframework.integration.config;
import org.w3c.dom.Element;
import org.springframework.beans.factory.support.BeanDefinitionBuilder;
import org.springframework.beans.factory.support.BeanDefinitionReaderUtils;
import org.springframework.beans.factory.xml.ParserContext;
import org.springframework.integration.config.AbstractConsumerEndpointParser;
import org.springframework.integration.transformer.Transformer;
import org.springframework.integration.transformer.TransformerEndpoint;

View File

@@ -14,13 +14,12 @@
* limitations under the License.
*/
package org.springframework.integration.gateway.config;
package org.springframework.integration.config;
import org.w3c.dom.Element;
import org.springframework.beans.factory.support.BeanDefinitionBuilder;
import org.springframework.beans.factory.xml.AbstractSimpleBeanDefinitionParser;
import org.springframework.integration.config.IntegrationNamespaceUtils;
import org.springframework.integration.gateway.GatewayProxyFactoryBean;
import org.springframework.util.ObjectUtils;

View File

@@ -17,7 +17,6 @@
package org.springframework.integration.config;
import org.springframework.beans.factory.xml.NamespaceHandlerSupport;
import org.springframework.integration.gateway.config.GatewayParser;
/**
* Namespace handler for the integration namespace.

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.integration.transformer.config;
package org.springframework.integration.config;
import java.util.HashMap;
import java.util.Map;