Removed DOCUMENT ME comments that were generated and applied source code
[utils] / system / spring / src / main / java / org / wamblee / system / spring / component / DatasourceComponent.java
index 1b121bca40244e69010e4f37d581879c17a7db04..ad1314c6bcf16c4c36af513913008041f0359e9e 100644 (file)
@@ -37,38 +37,25 @@ import java.util.TreeMap;
 
 import javax.sql.DataSource;
 
-
 /**
- * DOCUMENT ME!
- *
+ * 
  * @author $author$
  * @version $Revision$
  */
 public class DatasourceComponent extends AbstractComponent<DataSource> {
-    /**
-     * DOCUMENT ME!
-     */
-    private static RequiredInterface PROPS = new DefaultRequiredInterface("dbprops",
-            Properties.class);
+    private static RequiredInterface PROPS = new DefaultRequiredInterface(
+        "dbprops", Properties.class);
 
-    /**
-     * DOCUMENT ME!
-     */
-    private static ProvidedInterface DATASOURCE = new DefaultProvidedInterface("datasource",
-            DataSource.class);
+    private static ProvidedInterface DATASOURCE = new DefaultProvidedInterface(
+        "datasource", DataSource.class);
 
-    /**
-     * DOCUMENT ME!
-     */
-    private static ProvidedInterface ORM_CONFIG = new DefaultProvidedInterface("ormconfig",
-            ORMappingConfig.class);
+    private static ProvidedInterface ORM_CONFIG = new DefaultProvidedInterface(
+        "ormconfig", ORMappingConfig.class);
 
-/**
+    /**
      * Creates a new DatasourceComponent object.
-     *
-     * @param aName DOCUMENT ME!
-     *
-     * @throws IOException DOCUMENT ME!
+     * 
+     * 
      */
     public DatasourceComponent(String aName) throws IOException {
         super(aName);
@@ -78,25 +65,18 @@ public class DatasourceComponent extends AbstractComponent<DataSource> {
         addProvidedInterface(ORM_CONFIG);
     }
 
-    /**
-     * DOCUMENT ME!
-     *
-     * @param aScope DOCUMENT ME!
-     *
-     * @return DOCUMENT ME!
-     */
     @Override
     protected DataSource doStart(Scope aScope) {
-        Properties              dbProps = aScope.getInterfaceImplementation(PROPS
-                .getProvider(), Properties.class);
-        DriverManagerDataSource ds      = new DriverManagerDataSource(dbProps
-                .getProperty("database.url"),
-                dbProps.getProperty("database.username"),
-                dbProps.getProperty("database.password"));
+        Properties dbProps = aScope.getInterfaceImplementation(PROPS
+            .getProvider(), Properties.class);
+        DriverManagerDataSource ds = new DriverManagerDataSource(dbProps
+            .getProperty("database.url"), dbProps
+            .getProperty("database.username"), dbProps
+            .getProperty("database.password"));
         addInterface(DATASOURCE, ds, aScope);
 
-        DatabaseType    type   = DatabaseType.valueOf(dbProps.getProperty(
-                    "database.type"));
+        DatabaseType type = DatabaseType.valueOf(dbProps
+            .getProperty("database.type"));
 
         ORMappingConfig config = new ORMappingConfig(true, type);
 
@@ -105,11 +85,6 @@ public class DatasourceComponent extends AbstractComponent<DataSource> {
         return ds;
     }
 
-    /**
-     * DOCUMENT ME!
-     *
-     * @param aRuntime DOCUMENT ME!
-     */
     @Override
     protected void doStop(DataSource aRuntime) {
         // Empty.