source code formatting.
[utils] / security / src / main / java / org / wamblee / usermgt / UserGroupRepositoryComponent.java
index fb3378cfc7c30fdcec8ab8bcb8eac5d86b86682a..8c93cbd1d63221dbdd4fe4c857701e1d33f2b5e3 100644 (file)
@@ -1,55 +1,82 @@
 /*
  * Copyright 2008 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;
 
-import java.util.HashMap;
-import java.util.Map;
-import java.util.TreeMap;
-
 import net.sf.ehcache.Ehcache;
 
 import org.hibernate.SessionFactory;
+
 import org.wamblee.cache.EhCache;
+
 import org.wamblee.system.core.DefaultProvidedInterface;
 import org.wamblee.system.core.DefaultRequiredInterface;
 import org.wamblee.system.core.ProvidedInterface;
 import org.wamblee.system.core.RequiredInterface;
 import org.wamblee.system.spring.SpringComponent;
 
-public class UserGroupRepositoryComponent extends SpringComponent {
+import java.util.HashMap;
+import java.util.Map;
+import java.util.TreeMap;
+
 
-    public UserGroupRepositoryComponent(String aName) { 
-        super(aName, new String[] { "spring/org.wamblee.security.usermgt-repositories.xml" } , 
-                createProvided(), createRequired()); 
-        
+/**
+ * DOCUMENT ME!
+ *
+ * @author $author$
+ * @version $Revision$
+ */
+public class UserGroupRepositoryComponent extends SpringComponent {
+/**
+     * Creates a new UserGroupRepositoryComponent object.
+     *
+     * @param aName DOCUMENT ME!
+     */
+    public UserGroupRepositoryComponent(String aName) {
+        super(aName,
+            new String[] { "spring/org.wamblee.security.usermgt-repositories.xml" },
+            createProvided(), createRequired());
     }
 
+    /**
+     * DOCUMENT ME!
+     *
+     * @return DOCUMENT ME!
+     */
     private static Map<RequiredInterface, String> createRequired() {
         Map<RequiredInterface, String> required = new HashMap<RequiredInterface, String>();
-        required.put(new DefaultRequiredInterface("sessionFactory", SessionFactory.class), "sessionFactory");
+        required.put(new DefaultRequiredInterface("sessionFactory",
+                SessionFactory.class), "sessionFactory");
+
         return required;
     }
 
+    /**
+     * DOCUMENT ME!
+     *
+     * @return DOCUMENT ME!
+     */
     private static Map<String, ProvidedInterface> createProvided() {
-        Map<String,ProvidedInterface> provided = new HashMap<String,ProvidedInterface>();
-        provided.put("userCache", new DefaultProvidedInterface("cache", EhCache.class));
-        provided.put(UserSet.class.getName(), new DefaultProvidedInterface("userset", UserSet.class));
-        provided.put(GroupSet.class.getName(), new DefaultProvidedInterface("groupset", GroupSet.class));
-        return provided; 
+        Map<String, ProvidedInterface> provided = new HashMap<String, ProvidedInterface>();
+        provided.put("userCache",
+            new DefaultProvidedInterface("cache", EhCache.class));
+        provided.put(UserSet.class.getName(),
+            new DefaultProvidedInterface("userset", UserSet.class));
+        provided.put(GroupSet.class.getName(),
+            new DefaultProvidedInterface("groupset", GroupSet.class));
+
+        return provided;
     }
-    
-    
 }