Removed DOCUMENT ME comments that were generated and applied source code
[utils] / security / src / main / java / org / wamblee / usermgt / hibernate / UserAdministrationComponent.java
index 0349c3883bc16af47da7b1e0d455fa8a96ca8c20..c605577327115f5b70cd17af9cb96609d3ea1ea7 100644 (file)
@@ -38,51 +38,35 @@ import java.io.IOException;
 
 import javax.sql.DataSource;
 
-
 /**
- * DOCUMENT ME!
- *
+ * 
  * @author $author$
  * @version $Revision$
  */
 public class UserAdministrationComponent extends DefaultContainer {
-    /**
-     * DOCUMENT ME!
-     */
-    private ProvidedInterface TRANSACTION_MGR = new DefaultProvidedInterface("transactionManager",
-            PlatformTransactionManager.class);
+    private ProvidedInterface TRANSACTION_MGR = new DefaultProvidedInterface(
+        "transactionManager", PlatformTransactionManager.class);
 
-    /**
-     * DOCUMENT ME!
-     */
-    private ProvidedInterface USER_CACHE = new DefaultProvidedInterface("userCache",
-            EhCache.class);
+    private ProvidedInterface USER_CACHE = new DefaultProvidedInterface(
+        "userCache", EhCache.class);
 
-    /**
-     * DOCUMENT ME!
-     */
-    private ProvidedInterface HIBERNATE_TEMPLATE = new DefaultProvidedInterface("hibernateTemplate",
-            HibernateTemplate.class);
+    private ProvidedInterface HIBERNATE_TEMPLATE = new DefaultProvidedInterface(
+        "hibernateTemplate", HibernateTemplate.class);
 
-    /**
-     * DOCUMENT ME!
-     */
-    private ProvidedInterface USER_MGT = new DefaultProvidedInterface("usermgt",
-            UserAdministration.class);
+    private ProvidedInterface USER_MGT = new DefaultProvidedInterface(
+        "usermgt", UserAdministration.class);
 
-/**
+    /**
      * Creates a new UserAdministrationComponent object.
-     *
-     * @param aName DOCUMENT ME!
-     * @param aExposeInternals DOCUMENT ME!
-     *
-     * @throws IOException DOCUMENT ME!
+     * 
+     * 
      */
     public UserAdministrationComponent(String aName, boolean aExposeInternals)
         throws IOException {
         super(aName);
 
-        ObjectConfiguration mappingFilesConfig = new ObjectConfiguration(UsermgtHibernateMappingFiles.class);
+        ObjectConfiguration mappingFilesConfig = new ObjectConfiguration(
+            UsermgtHibernateMappingFiles.class);
         mappingFilesConfig.getSetterConfig().initAllSetters();
         addComponent("mappingFiles", new UsermgtHibernateMappingFiles(),
             mappingFilesConfig);
@@ -91,17 +75,17 @@ public class UserAdministrationComponent extends DefaultContainer {
         addComponent(hibernate);
 
         Component<?> repository = new UserGroupRepositoryComponent(
-                "usersgroups");
+            "usersgroups");
         addComponent(repository);
 
         Component<?> usermgt = new UserAdministrationLightComponent(
-                "usermgtlight");
+            "usermgtlight");
         addComponent(usermgt);
 
         addRequiredInterface(new DefaultRequiredInterface("datasource",
-                DataSource.class));
+            DataSource.class));
         addRequiredInterface(new DefaultRequiredInterface("ormconfig",
-                ORMappingConfig.class));
+            ORMappingConfig.class));
 
         if (aExposeInternals) {
             addProvidedInterface(TRANSACTION_MGR);