CAMEL-7382 fixed the CS errors

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

Branch: refs/heads/master
Commit: f7fe07b5beb8f20a025a921be0d6e2289a4a8066
Parents: 1985d99
Author: Willem Jiang <willem.ji...@gmail.com>
Authored: Thu Apr 24 14:41:04 2014 +0800
Committer: Willem Jiang <willem.ji...@gmail.com>
Committed: Thu Apr 24 14:41:04 2014 +0800

----------------------------------------------------------------------
 .../jdbc/AbstractJdbcGeneratedKeysTest.java     | 16 ++++++++++++++++
 ...JdbcParameterizedQueryGeneratedKeysTest.java | 20 ++++++++++----------
 2 files changed, 26 insertions(+), 10 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/f7fe07b5/components/camel-jdbc/src/test/java/org/apache/camel/component/jdbc/AbstractJdbcGeneratedKeysTest.java
----------------------------------------------------------------------
diff --git 
a/components/camel-jdbc/src/test/java/org/apache/camel/component/jdbc/AbstractJdbcGeneratedKeysTest.java
 
b/components/camel-jdbc/src/test/java/org/apache/camel/component/jdbc/AbstractJdbcGeneratedKeysTest.java
index 791dd59..2f1d54c 100644
--- 
a/components/camel-jdbc/src/test/java/org/apache/camel/component/jdbc/AbstractJdbcGeneratedKeysTest.java
+++ 
b/components/camel-jdbc/src/test/java/org/apache/camel/component/jdbc/AbstractJdbcGeneratedKeysTest.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.component.jdbc;
 
 import java.math.BigDecimal;

http://git-wip-us.apache.org/repos/asf/camel/blob/f7fe07b5/components/camel-jdbc/src/test/java/org/apache/camel/component/jdbc/JdbcParameterizedQueryGeneratedKeysTest.java
----------------------------------------------------------------------
diff --git 
a/components/camel-jdbc/src/test/java/org/apache/camel/component/jdbc/JdbcParameterizedQueryGeneratedKeysTest.java
 
b/components/camel-jdbc/src/test/java/org/apache/camel/component/jdbc/JdbcParameterizedQueryGeneratedKeysTest.java
index 04d7bb1..d96cd5d 100644
--- 
a/components/camel-jdbc/src/test/java/org/apache/camel/component/jdbc/JdbcParameterizedQueryGeneratedKeysTest.java
+++ 
b/components/camel-jdbc/src/test/java/org/apache/camel/component/jdbc/JdbcParameterizedQueryGeneratedKeysTest.java
@@ -16,39 +16,39 @@
  */
 package org.apache.camel.component.jdbc;
 
-import org.apache.camel.builder.RouteBuilder;
-import org.junit.Test;
-
 import java.util.HashMap;
 import java.util.Map;
 
+import org.apache.camel.builder.RouteBuilder;
+import org.junit.Test;
+
 public class JdbcParameterizedQueryGeneratedKeysTest extends 
AbstractJdbcGeneratedKeysTest {
 
-    private static final Map<String, Object> valueMap;
+    private static final Map<String, Object> VALUE_MAP;
 
     static {
-        valueMap = new HashMap<String, Object>();
-        valueMap.put("value", "testValue");
+        VALUE_MAP = new HashMap<String, Object>();
+        VALUE_MAP.put("value", "testValue");
     }
 
     @Test
     public void testRetrieveGeneratedKeys() throws Exception {
-        super.testRetrieveGeneratedKeys("insert into tableWithAutoIncr 
(content) values (:?value)", valueMap);
+        super.testRetrieveGeneratedKeys("insert into tableWithAutoIncr 
(content) values (:?value)", VALUE_MAP);
     }
 
     @Test
     public void testRetrieveGeneratedKeysWithStringGeneratedColumns() throws 
Exception {
-        super.testRetrieveGeneratedKeysWithStringGeneratedColumns("insert into 
tableWithAutoIncr (content) values (:?value)", valueMap);
+        super.testRetrieveGeneratedKeysWithStringGeneratedColumns("insert into 
tableWithAutoIncr (content) values (:?value)", VALUE_MAP);
     }
 
     @Test
     public void testRetrieveGeneratedKeysWithIntGeneratedColumns() throws 
Exception {
-        super.testRetrieveGeneratedKeysWithIntGeneratedColumns("insert into 
tableWithAutoIncr (content) values (:?value)", valueMap);
+        super.testRetrieveGeneratedKeysWithIntGeneratedColumns("insert into 
tableWithAutoIncr (content) values (:?value)", VALUE_MAP);
     }
 
     @Test
     public void 
testGivenAnInvalidGeneratedColumnsHeaderThenAnExceptionIsThrown() throws 
Exception {
-        
super.testGivenAnInvalidGeneratedColumnsHeaderThenAnExceptionIsThrown("insert 
into tableWithAutoIncr (content) values (:?value)", valueMap);
+        
super.testGivenAnInvalidGeneratedColumnsHeaderThenAnExceptionIsThrown("insert 
into tableWithAutoIncr (content) values (:?value)", VALUE_MAP);
     }
 
     @Override

Reply via email to