Moved Message into the new 'org.springframework.integration.core' package.

This commit is contained in:
Mark Fisher
2008-10-15 02:54:29 +00:00
parent ea2bb3e7c7
commit 08043b541d
252 changed files with 268 additions and 229 deletions

View File

@@ -22,7 +22,7 @@ import org.springframework.integration.annotation.Gateway;
* The entry point for Cafe Demo. The demo's main() method invokes the
* '<code>placeOrder</code>' method on a generated MessagingGateway proxy.
* The gateway then passes the {@link Order} as the payload of a
* {@link org.springframework.integration.message.Message} to the
* {@link org.springframework.integration.core.Message} to the
* configured <em>requestChannel</em>. The channel ('orders') is
* defined in the 'cafeDemo.xml' file.
*

View File

@@ -18,7 +18,7 @@ package org.springframework.integration.samples.ws;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import org.springframework.integration.channel.MessageChannel;
import org.springframework.integration.message.Message;
import org.springframework.integration.core.Message;
import org.springframework.integration.message.MessageBuilder;
import org.springframework.integration.ws.AbstractWebServiceOutboundGateway;