New base package: org.springframework.integration

This commit is contained in:
Mark Fisher
2007-11-20 22:19:46 +00:00
parent 234fdec4be
commit 1c328a11ad
10 changed files with 14 additions and 13 deletions

View File

@@ -16,7 +16,7 @@
<dependencies>
<dependency org="org.junit" name="junit" rev="4.4" conf="test->default"/>
<dependency org="org.springframework" name="spring-context" rev="2.1-m4" conf="compile"/>
<dependency org="org.springframework" name="spring-context" rev="2.5.0" conf="compile->default"/>
</dependencies>
</ivy-module>

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.eai;
package org.springframework.integration;
/**
* Exception that indicates an error during message delivery.

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.eai;
package org.springframework.integration;
/**
* Exception that indicates an error during message handling.

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.eai;
package org.springframework.integration;
/**
* The base exception for any failures within the messaging system.

View File

@@ -14,9 +14,9 @@
* limitations under the License.
*/
package org.springframework.eai.channel;
package org.springframework.integration.channel;
import org.springframework.eai.message.Message;
import org.springframework.integration.message.Message;
/**
* The base channel interface defining the common behavior

View File

@@ -14,12 +14,12 @@
* limitations under the License.
*/
package org.springframework.eai.channel;
package org.springframework.integration.channel;
import java.util.concurrent.BlockingQueue;
import java.util.concurrent.LinkedBlockingQueue;
import org.springframework.eai.message.Message;
import org.springframework.integration.message.Message;
/**
* Simple implementation of a point-to-point message channel.

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.eai.message;
package org.springframework.integration.message;
/**
* A simple Message implementation that encapsulates

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.eai.message;
package org.springframework.integration.message;
/**
* The central interface that any Message type must implement.

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.eai.message;
package org.springframework.integration.message;
import java.util.Date;
import java.util.Map;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.eai.channel;
package org.springframework.integration.channel;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
@@ -25,7 +25,8 @@ import java.util.concurrent.atomic.AtomicBoolean;
import org.junit.Test;
import org.springframework.eai.message.DocumentMessage;
import org.springframework.integration.channel.PointToPointChannel;
import org.springframework.integration.message.DocumentMessage;
/**
* @author Mark Fisher