2a77fd824ce2c996bb98fb166c96ebcbe40d11e3
[utils] / security / src / main / java / org / wamblee / usermgt / hibernate / AuthorizationLightComponent.java
1 /*
2  * Copyright 2008 the original author or authors.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.wamblee.usermgt.hibernate;
17
18 import org.springframework.orm.hibernate3.HibernateTemplate;
19
20 import org.wamblee.security.authorization.AuthorizationService;
21
22 import org.wamblee.system.core.DefaultProvidedInterface;
23 import org.wamblee.system.core.DefaultRequiredInterface;
24 import org.wamblee.system.core.ProvidedInterface;
25 import org.wamblee.system.core.RequiredInterface;
26 import org.wamblee.system.spring.SpringComponent;
27
28 import org.wamblee.usermgt.GroupSet;
29 import org.wamblee.usermgt.UserAccessor;
30 import org.wamblee.usermgt.UserAdministration;
31 import org.wamblee.usermgt.UserSet;
32
33 import java.util.HashMap;
34 import java.util.Map;
35
36
37 /**
38  * Light version of the user administration component that requires
39  * external datasource, and userset and group set components, as well as an
40  * external hibernate session factory.
41  *
42  * @author Erik Brakkee
43  */
44 public class AuthorizationLightComponent extends SpringComponent {
45 /**
46      * Creates a new AuthorizationLightComponent object.
47      *
48      * @param aName DOCUMENT ME!
49      */
50     public AuthorizationLightComponent(String aName) {
51         super(aName,
52             new String[] { "spring/org.wamblee.security.authorization.xml" },
53             createProvided(), createRequired());
54     }
55
56     /**
57      * DOCUMENT ME!
58      *
59      * @return DOCUMENT ME!
60      */
61     private static Map<RequiredInterface, String> createRequired() {
62         Map<RequiredInterface, String> required = new HashMap<RequiredInterface, String>();
63         required.put(new DefaultRequiredInterface("userArccessor",
64                 UserAccessor.class), UserAccessor.class.getName());
65         required.put(new DefaultRequiredInterface("hibernateTemplate",
66                 HibernateTemplate.class), HibernateTemplate.class.getName());
67
68         return required;
69     }
70
71     /**
72      * DOCUMENT ME!
73      *
74      * @return DOCUMENT ME!
75      */
76     private static Map<String, ProvidedInterface> createProvided() {
77         Map<String, ProvidedInterface> provided = new HashMap<String, ProvidedInterface>();
78         provided.put(AuthorizationService.class.getName(),
79             new DefaultProvidedInterface(AuthorizationService.class.getName(),
80                 AuthorizationService.class));
81
82         return provided;
83     }
84 }