INT-1390 Refactoring: moved MessageChannel to the root package, and moved ChannelResolver and BeanFactoryChannelResolver into a new 'suport.channel' package

This commit is contained in:
Mark Fisher
2010-08-31 01:53:45 +00:00
parent b42d5b84ad
commit 7c1ab04cd5
227 changed files with 419 additions and 289 deletions

View File

@@ -19,7 +19,7 @@ package org.springframework.integration.security.channel;
import org.aopalliance.intercept.MethodInvocation;
import org.springframework.integration.Message;
import org.springframework.integration.core.MessageChannel;
import org.springframework.integration.MessageChannel;
import org.springframework.util.Assert;
/**

View File

@@ -25,8 +25,8 @@ import java.util.Map;
import java.util.Set;
import java.util.regex.Pattern;
import org.springframework.integration.MessageChannel;
import org.springframework.integration.context.NamedComponent;
import org.springframework.integration.core.MessageChannel;
import org.springframework.security.access.ConfigAttribute;
import org.springframework.security.access.SecurityMetadataSource;
import org.springframework.util.Assert;

View File

@@ -23,7 +23,7 @@ import org.springframework.aop.framework.ProxyFactory;
import org.springframework.aop.support.DefaultPointcutAdvisor;
import org.springframework.beans.BeansException;
import org.springframework.beans.factory.config.BeanPostProcessor;
import org.springframework.integration.core.MessageChannel;
import org.springframework.integration.MessageChannel;
import org.springframework.integration.security.channel.ChannelInvocationDefinitionSource;
import org.springframework.integration.security.channel.ChannelSecurityInterceptor;
import org.springframework.util.Assert;

View File

@@ -34,7 +34,7 @@ import org.springframework.util.xml.DomUtils;
/**
* Creates a {@link org.springframework.integration.security.channel.ChannelSecurityInterceptor}
* to control send and receive access, and creates a bean post-processor to apply the
* interceptor to {@link org.springframework.integration.core.MessageChannel}s
* interceptor to {@link org.springframework.integration.MessageChannel}s
* whose names match the specified patterns.
*
* @author Jonas Partner