copyright messages updated in all java filees.
[utils] / security / src / test / java / org / wamblee / usermgt / hibernate / HibernateGroupSetTest.java
index 4f0cb111a376f8fa2e8a3ab1ac134bdfcb14237a..44a58b1c5ce9934460918a67c3c5ea84d63f013e 100644 (file)
@@ -1,18 +1,18 @@
 /*
- * Copyright 2005 the original author or authors.
- *
+ * Copyright 2005-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.wamblee.usermgt.hibernate;
 
 import org.wamblee.system.adapters.DefaultContainer;
@@ -31,56 +31,33 @@ import java.sql.SQLException;
 import java.util.HashMap;
 import java.util.Map;
 
-
 /**
  * Tests for {@link org.wamblee.usermgt.hibernate.HibernateGroupSet}
- *
+ * 
  * @author Erik Brakkee
  */
 public class HibernateGroupSetTest extends InMemoryGroupSetTest {
-    /**
-     * DOCUMENT ME!
-     */
     private static final String GROUP_TABLE = "GROUPS";
 
-    /**
-     * DOCUMENT ME!
-     */
-    private static final String GROUP_QUERY = "select * from " + GROUP_TABLE
-        + " where name = ?";
+    private static final String GROUP_QUERY = "select * from " + GROUP_TABLE +
+        " where name = ?";
 
-    /**
-     * DOCUMENT ME!
-     */
     private DefaultContainer container;
 
-    /**
-     * DOCUMENT ME!
-     */
     private Scope scope;
 
-    /**
-     * DOCUMENT ME!
-     */
     private DatabaseTesterComponent databaseTester;
 
-    /**
-     * DOCUMENT ME!
-     */
     private GroupSet groupSet;
 
-    /**
-     * DOCUMENT ME!
-     *
-     * @throws Exception DOCUMENT ME!
-     */
     @Override
     protected void setUp() throws Exception {
         container = new UserMgtRepositoryTestContainer("top");
 
-        ObjectConfiguration config = new ObjectConfiguration(HibernateGroupSetTest.class);
-        config.getSetterConfig().clear().add("setGroupSet")
-        .add("setDatabaseTester");
+        ObjectConfiguration config = new ObjectConfiguration(
+            HibernateGroupSetTest.class);
+        config.getSetterConfig().clear().add("setGroupSet").add(
+            "setDatabaseTester");
         container.addComponent("testcase", this, config);
 
         scope = container.start();
@@ -89,45 +66,25 @@ public class HibernateGroupSetTest extends InMemoryGroupSetTest {
         super.setUp();
     }
 
-    /**
-     * DOCUMENT ME!
-     *
-     * @throws Exception DOCUMENT ME!
-     */
     @Override
     protected void tearDown() throws Exception {
         container.stop(scope);
         super.tearDown();
     }
 
-    /**
-     * DOCUMENT ME!
-     *
-     * @param aDatabaseTester DOCUMENT ME!
-     */
     public void setDatabaseTester(DatabaseTesterComponent aDatabaseTester) {
         databaseTester = aDatabaseTester;
     }
 
-    /**
-     * DOCUMENT ME!
-     *
-     * @param aGroupSet DOCUMENT ME!
-     */
     public void setGroupSet(GroupSet aGroupSet) {
         groupSet = aGroupSet;
     }
 
-    /* (non-Javadoc)
+    /*
+     * (non-Javadoc)
+     * 
      * @see org.wamblee.usermgt.InMemoryGroupSetTest#checkGroupCount(int)
      */
-    /**
-     * DOCUMENT ME!
-     *
-     * @param aSize DOCUMENT ME!
-     *
-     * @throws SQLException DOCUMENT ME!
-     */
     @Override
     protected void checkGroupCount(int aSize) throws SQLException {
         databaseTester.flush();
@@ -135,49 +92,45 @@ public class HibernateGroupSetTest extends InMemoryGroupSetTest {
         assertEquals(aSize, databaseTester.getTableSize(GROUP_TABLE));
     }
 
-    /* (non-Javadoc)
-     * @see org.wamblee.usermgt.InMemoryGroupSetTest#checkGroupExists(java.lang.String)
-     */
-    /**
-     * DOCUMENT ME!
-     *
-     * @param aGroup DOCUMENT ME!
-     *
-     * @throws SQLException DOCUMENT ME!
+    /*
+     * (non-Javadoc)
+     * 
+     * @see
+     * org.wamblee.usermgt.InMemoryGroupSetTest#checkGroupExists(java.lang.String
+     * )
      */
     @Override
-    protected void checkGroupExists(final String aGroup)
-        throws SQLException {
+    protected void checkGroupExists(final String aGroup) throws SQLException {
         databaseTester.flush();
 
-        Map<String, Integer> result = databaseTester.executeTransaction(new TestTransactionCallback() {
-                    /* (non-Javadoc)
-                     * @see org.wamblee.test.TestTransactionCallback#execute()
-                     */
-                    @Override
-                    public Map execute() throws Exception {
-                        ResultSet            result = databaseTester
-                            .executeQuery(GROUP_QUERY, aGroup);
-                        Map<String, Integer> res = new HashMap<String, Integer>();
-                        res.put("result", databaseTester.countResultSet(result));
-
-                        return res;
-                    }
-                });
+        Map<String, Integer> result = databaseTester
+            .executeTransaction(new TestTransactionCallback() {
+                /*
+                 * (non-Javadoc)
+                 * 
+                 * @see org.wamblee.test.TestTransactionCallback#execute()
+                 */
+                @Override
+                public Map execute() throws Exception {
+                    ResultSet result = databaseTester.executeQuery(GROUP_QUERY,
+                        aGroup);
+                    Map<String, Integer> res = new HashMap<String, Integer>();
+                    res.put("result", databaseTester.countResultSet(result));
+
+                    return res;
+                }
+            });
 
         int count = result.get("result");
         assertEquals(1, count);
     }
 
-    /* (non-Javadoc)
-     * @see org.wamblee.usermgt.InMemoryGroupSetTest#checkGroupNotExists(java.lang.String)
-     */
-    /**
-     * DOCUMENT ME!
-     *
-     * @param aGroup DOCUMENT ME!
-     *
-     * @throws SQLException DOCUMENT ME!
+    /*
+     * (non-Javadoc)
+     * 
+     * @see
+     * org.wamblee.usermgt.InMemoryGroupSetTest#checkGroupNotExists(java.lang
+     * .String)
      */
     @Override
     protected void checkGroupNotExists(String aGroup) throws SQLException {
@@ -187,14 +140,11 @@ public class HibernateGroupSetTest extends InMemoryGroupSetTest {
         assertEquals(0, databaseTester.countResultSet(result));
     }
 
-    /* (non-Javadoc)
+    /*
+     * (non-Javadoc)
+     * 
      * @see org.wamblee.usermgt.InMemoryGroupSetTest#createGroupSet()
      */
-    /**
-     * DOCUMENT ME!
-     *
-     * @return DOCUMENT ME!
-     */
     @Override
     protected GroupSet createGroupSet() {
         return groupSet;