diff --git a/spring-integration-core/src/main/java/org/springframework/integration/aggregator/CorrelatingMessageBarrier.java b/spring-integration-core/src/main/java/org/springframework/integration/aggregator/CorrelatingMessageBarrier.java
new file mode 100644
index 0000000000..79fdb92258
--- /dev/null
+++ b/spring-integration-core/src/main/java/org/springframework/integration/aggregator/CorrelatingMessageBarrier.java
@@ -0,0 +1,121 @@
+/*
+ * Copyright 2002-2010 the original author or authors.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
+ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations under the License.
+ */
+package org.springframework.integration.aggregator;
+
+import org.apache.commons.logging.Log;
+import org.apache.commons.logging.LogFactory;
+import org.springframework.integration.core.Message;
+import org.springframework.integration.handler.AbstractMessageHandler;
+import org.springframework.integration.message.MessageSource;
+import org.springframework.integration.store.MessageGroup;
+import org.springframework.integration.store.MessageGroupStore;
+import org.springframework.integration.store.SimpleMessageStore;
+
+import java.util.Iterator;
+import java.util.concurrent.ConcurrentHashMap;
+import java.util.concurrent.ConcurrentMap;
+
+/**
+ * This Endpoint serves as a barrier for messages that should not be processed yet. The decision when a message can be
+ * processed is delegated to a {@link org.springframework.integration.aggregator.ReleaseStrategy ReleaseStrategy}.
+ * When a message can be processed it is up to the client to take care of the locking (potentially from the ReleaseStrategy's
+ * {@link org.springframework.integration.aggregator.ReleaseStrategy#canRelease(org.springframework.integration.store.MessageGroup) canRelease(..)}
+ * method).
+ *
+ * The messages will be stored in a {@link org.springframework.integration.store.MessageGroupStore MessageStore}
+ * for each correlation key.
+ *
+ * @author Iwein Fuld
+ */
+public class CorrelatingMessageBarrier extends AbstractMessageHandler implements MessageSource {
+ private static final Log log = LogFactory.getLog(CorrelatingMessageBarrier.class);
+
+ private CorrelationStrategy correlationStrategy;
+ private ReleaseStrategy releaseStrategy;
+
+ private final ConcurrentMap