diff --git a/.gitignore b/.gitignore index a5e2b63ba2..2772bd4241 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,5 @@ spring-integration-samples/loanshark/application.log* integration-repo spring-integration-jms/activemq-data/ si.java.hsp +*/src/main/java/META-INF +spring-integration-parent/.project diff --git a/spring-integration-core/src/main/resources/org/springframework/integration/config/xml/spring-integration-2.0.xsd b/spring-integration-core/src/main/resources/org/springframework/integration/config/xml/spring-integration-2.0.xsd index 4f02c2796d..8611200a7e 100644 --- a/spring-integration-core/src/main/resources/org/springframework/integration/config/xml/spring-integration-2.0.xsd +++ b/spring-integration-core/src/main/resources/org/springframework/integration/config/xml/spring-integration-2.0.xsd @@ -1944,6 +1944,12 @@ Name of the header whose value to use. + + + + + + @@ -2049,80 +2055,7 @@ Name of the header whose value to use. - - - - - - - - - - - - - - - - - - - - - - - The release strategy to use to decide when - messages can be processed. Defaults to a - SequenceSizeReleaseStrategy, - releasing all messages once the sequence is complete. - This is mutually exclusive with - the release-partial-sequences - attribute (either or none can be specified , but not both). - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Reference to a MessageGroupStore for holding - state in between message processing. The default - is to use a - volatile in-memory store, which means that unprocessed messages - will be lost if the - JVM exits. To - customize the expiry of incomplete message groups - configure the message store. - - - - - - - - + @@ -2144,10 +2077,9 @@ Name of the header whose value to use. - - + diff --git a/spring-integration-core/src/test/java/org/springframework/integration/aggregator/AggregatorReplyChannelTests-context.xml b/spring-integration-core/src/test/java/org/springframework/integration/aggregator/scenarios/AggregatorReplyChannelTests-context.xml similarity index 100% rename from spring-integration-core/src/test/java/org/springframework/integration/aggregator/AggregatorReplyChannelTests-context.xml rename to spring-integration-core/src/test/java/org/springframework/integration/aggregator/scenarios/AggregatorReplyChannelTests-context.xml diff --git a/spring-integration-core/src/test/java/org/springframework/integration/aggregator/AggregatorReplyChannelTests.java b/spring-integration-core/src/test/java/org/springframework/integration/aggregator/scenarios/AggregatorReplyChannelTests.java similarity index 97% rename from spring-integration-core/src/test/java/org/springframework/integration/aggregator/AggregatorReplyChannelTests.java rename to spring-integration-core/src/test/java/org/springframework/integration/aggregator/scenarios/AggregatorReplyChannelTests.java index d47733139a..674e60a2e5 100644 --- a/spring-integration-core/src/test/java/org/springframework/integration/aggregator/AggregatorReplyChannelTests.java +++ b/spring-integration-core/src/test/java/org/springframework/integration/aggregator/scenarios/AggregatorReplyChannelTests.java @@ -14,7 +14,7 @@ * limitations under the License. */ -package org.springframework.integration.aggregator; +package org.springframework.integration.aggregator.scenarios; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNotNull;