updated coding rules.
[utils] / security / src / main / java / org / wamblee / usermgt / hibernate / UserAdministrationComponent.java
index 66e3850f2fa2501580f03a46b1b3c3febcbb00ee..b6da338066e8d2dcfb402b72409193dcf11b4b16 100644 (file)
@@ -53,14 +53,14 @@ public class UserAdministrationComponent extends DefaultContainer {
         mappingFilesConfig.getSetterConfig().initAllSetters();
         addComponent("mappingFiles", new UsermgtHibernateMappingFiles(), mappingFilesConfig);
 
-        Component<?> _hibernate = new HibernateComponent("hibernate");
-        addComponent(_hibernate);
+        Component<?> hibernate = new HibernateComponent("hibernate");
+        addComponent(hibernate);
 
-        Component<?> _repository = new UserGroupRepositoryComponent("usersgroups");
-        addComponent(_repository);
+        Component<?> repository = new UserGroupRepositoryComponent("usersgroups");
+        addComponent(repository);
 
-        Component<?> _usermgt = new UserAdministrationLightComponent("usermgtlight");
-        addComponent(_usermgt);
+        Component<?> usermgt = new UserAdministrationLightComponent("usermgtlight");
+        addComponent(usermgt);
 
         addRequiredInterface(new DefaultRequiredInterface("datasource",
                 DataSource.class));