copyright messages updated in all java filees.
[utils] / security / src / main / java / org / wamblee / usermgt / UserGroupRepositoryComponent.java
index 8c93cbd1d63221dbdd4fe4c857701e1d33f2b5e3..e133459f3fbaa640efb19abb02bb46c313eb4534 100644 (file)
@@ -1,18 +1,18 @@
 /*
- * Copyright 2008 the original author or authors.
- *
+ * Copyright 2005-2010 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 net.sf.ehcache.Ehcache;
@@ -31,51 +31,39 @@ import java.util.HashMap;
 import java.util.Map;
 import java.util.TreeMap;
 
-
 /**
- * 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,
+        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");
+            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));
+        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;
     }