Moved DirectChannel and PublishSubscribeChannels to the 'channel' pacakge.

This commit is contained in:
Mark Fisher
2008-08-14 15:40:13 +00:00
parent add3d6a121
commit 76762ed960
15 changed files with 19 additions and 19 deletions

View File

@@ -14,9 +14,9 @@
* limitations under the License.
*/
package org.springframework.integration.dispatcher;
package org.springframework.integration.channel;
import org.springframework.integration.channel.AbstractMessageChannel;
import org.springframework.integration.dispatcher.SimpleDispatcher;
import org.springframework.integration.message.Message;
import org.springframework.integration.message.SubscribableSource;
import org.springframework.integration.message.MessageTarget;

View File

@@ -14,10 +14,10 @@
* limitations under the License.
*/
package org.springframework.integration.dispatcher;
package org.springframework.integration.channel;
import org.springframework.core.task.TaskExecutor;
import org.springframework.integration.channel.AbstractMessageChannel;
import org.springframework.integration.dispatcher.BroadcastingDispatcher;
import org.springframework.integration.message.Message;
import org.springframework.integration.message.MessageTarget;
import org.springframework.integration.message.SubscribableSource;

View File

@@ -14,11 +14,10 @@
* limitations under the License.
*/
package org.springframework.integration.dispatcher;
package org.springframework.integration.channel.factory;
import org.springframework.integration.channel.AbstractMessageChannel;
import org.springframework.integration.channel.factory.AbstractChannelFactory;
import org.springframework.integration.channel.factory.ChannelFactory;
import org.springframework.integration.channel.DirectChannel;
/**
* A {@link ChannelFactory} for creating {@link DirectChannel} instances.

View File

@@ -18,7 +18,7 @@ package org.springframework.integration.config;
import org.w3c.dom.Element;
import org.springframework.integration.dispatcher.DirectChannel;
import org.springframework.integration.channel.DirectChannel;
/**
* Parser for the <direct-channel> element.

View File

@@ -19,7 +19,7 @@ package org.springframework.integration.config;
import org.w3c.dom.Element;
import org.springframework.beans.factory.support.BeanDefinitionBuilder;
import org.springframework.integration.dispatcher.PublishSubscribeChannel;
import org.springframework.integration.channel.PublishSubscribeChannel;
import org.springframework.util.StringUtils;
/**