You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2015/12/18 18:02:29 UTC

[2/2] camel git commit: Fixed CS. Closes #656

Fixed CS. Closes #656


Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/f3c4fc2a
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/f3c4fc2a
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/f3c4fc2a

Branch: refs/heads/master
Commit: f3c4fc2a215e7f79e46b889490892bae9477dab4
Parents: 37ef29c
Author: Claus Ibsen <da...@apache.org>
Authored: Fri Dec 18 17:59:12 2015 +0100
Committer: Claus Ibsen <da...@apache.org>
Committed: Fri Dec 18 17:59:12 2015 +0100

----------------------------------------------------------------------
 .../GroupedMessageAggregationStrategy.java       | 19 +++++++++++++++++--
 .../aggregator/AggregateGroupMessageTest.java    | 16 ++++++++++++++++
 2 files changed, 33 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/f3c4fc2a/camel-core/src/main/java/org/apache/camel/processor/aggregate/GroupedMessageAggregationStrategy.java
----------------------------------------------------------------------
diff --git a/camel-core/src/main/java/org/apache/camel/processor/aggregate/GroupedMessageAggregationStrategy.java b/camel-core/src/main/java/org/apache/camel/processor/aggregate/GroupedMessageAggregationStrategy.java
index b04dbf0..833d31a 100644
--- a/camel-core/src/main/java/org/apache/camel/processor/aggregate/GroupedMessageAggregationStrategy.java
+++ b/camel-core/src/main/java/org/apache/camel/processor/aggregate/GroupedMessageAggregationStrategy.java
@@ -1,3 +1,19 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You 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.apache.camel.processor.aggregate;
 
 import java.util.List;
@@ -10,8 +26,7 @@ import org.apache.camel.impl.DefaultExchange;
  * Aggregate all {@link Message} into a single combined Exchange holding all the
  * aggregated messages in a {@link List} of {@link Message} as the message body.
  * 
- * This aggregation strategy can used in combination with @{link
- * org.apache.camel.processor.Splitter} to batch messages
+ * This aggregation strategy can used in combination with {@link org.apache.camel.processor.Splitter} to batch messages
  * 
  * @version
  */

http://git-wip-us.apache.org/repos/asf/camel/blob/f3c4fc2a/camel-core/src/test/java/org/apache/camel/processor/aggregator/AggregateGroupMessageTest.java
----------------------------------------------------------------------
diff --git a/camel-core/src/test/java/org/apache/camel/processor/aggregator/AggregateGroupMessageTest.java b/camel-core/src/test/java/org/apache/camel/processor/aggregator/AggregateGroupMessageTest.java
index 4d7b41c..25523d3 100644
--- a/camel-core/src/test/java/org/apache/camel/processor/aggregator/AggregateGroupMessageTest.java
+++ b/camel-core/src/test/java/org/apache/camel/processor/aggregator/AggregateGroupMessageTest.java
@@ -1,3 +1,19 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You 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.apache.camel.processor.aggregator;
 
 import java.util.List;