Removed DOCUMENT ME comments that were generated and applied source code
[utils] / support / spring / src / test / java / org / wamblee / test / spring / HibernateUtils.java
index 0c6c8f54849b865ddaa2f2435db8afe01328f1e2..a07cc39ea422dea390e0ebef998c8e827aba4691 100644 (file)
@@ -30,40 +30,33 @@ import java.util.Map;
 import java.util.Properties;
 import java.util.TreeMap;
 
-
 /**
  * Hibernate utilities.
- *
+ * 
  * @author Erik Brakkee
  */
 public final class HibernateUtils {
-    /**
-     * DOCUMENT ME!
-     */
     private static final String DATABASE_PROPS = "test.database.properties";
 
-/**
+    /**
      * Disabled.
-     *
+     * 
      */
     private HibernateUtils() {
         // Empty
     }
 
     /**
-     * DOCUMENT ME!
-     *
+     * 
      * @param aDir
-     *
+     * 
      * @return
-     *
-     * @throws IOException DOCUMENT ME!
+     * 
      */
-    public static Configuration getConfiguration(File aDir)
-        throws IOException {
-        Configuration conf  = new Configuration();
-        File[]        files = aDir.listFiles((FileFilter) (new AwkFilenameFilter(
-                    ".*\\.hbm\\.xml")));
+    public static Configuration getConfiguration(File aDir) throws IOException {
+        Configuration conf = new Configuration();
+        File[] files = aDir.listFiles((FileFilter) (new AwkFilenameFilter(
+            ".*\\.hbm\\.xml")));
 
         for (File f : files) {
             System.out.println("Mapping file: " + f);
@@ -73,37 +66,31 @@ public final class HibernateUtils {
         Map<String, String> dbProps = getHibernateProperties();
 
         for (Map.Entry<String, String> entry : dbProps.entrySet()) {
-            System.out.println("Property: " + entry.getKey() + "="
-                entry.getValue());
+            System.out.println("Property: " + entry.getKey() + "=" +
+                entry.getValue());
             conf.setProperty(entry.getKey(), entry.getValue());
         }
 
         return conf;
     }
 
-    /**
-     * DOCUMENT ME!
-     *
-     * @return DOCUMENT ME!
-     *
-     * @throws IOException DOCUMENT ME!
-     */
     private static Map<String, String> getHibernateProperties()
         throws IOException {
         System.out.println("Reading properties file: " + DATABASE_PROPS);
 
         InputResource lPropFile = new ClassPathResource(DATABASE_PROPS);
-        Properties    props     = new Properties();
+        Properties props = new Properties();
         props.load(lPropFile.getInputStream());
 
         Map<String, String> result = new TreeMap<String, String>();
-        result.put("hibernate.connection.driver_class",
-            props.getProperty("database.driver"));
-        result.put("hibernate.connection.url", props.getProperty("database.url"));
-        result.put("hibernate.connection.username",
-            props.getProperty("database.username"));
-        result.put("hibernate.connection.password",
-            props.getProperty("database.password"));
+        result.put("hibernate.connection.driver_class", props
+            .getProperty("database.driver"));
+        result.put("hibernate.connection.url", props
+            .getProperty("database.url"));
+        result.put("hibernate.connection.username", props
+            .getProperty("database.username"));
+        result.put("hibernate.connection.password", props
+            .getProperty("database.password"));
 
         return result;
     }