e7b0c96345a816b70edd7d0f37066373e85d7c24
[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 java.util.HashMap;
19 import java.util.Map;
20
21 import org.springframework.orm.hibernate3.HibernateTemplate;
22 import org.wamblee.security.authorization.AuthorizationService;
23 import org.wamblee.system.core.DefaultProvidedInterface;
24 import org.wamblee.system.core.DefaultRequiredInterface;
25 import org.wamblee.system.core.ProvidedInterface;
26 import org.wamblee.system.core.RequiredInterface;
27 import org.wamblee.system.spring.SpringComponent;
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 /**
34  * Light version of the user administration component that requires external
35  * datasource, and userset and group set components, as well as an external
36  * hibernate session factory.
37  * 
38  * @author Erik Brakkee
39  * 
40  */
41 public class AuthorizationLightComponent extends SpringComponent {
42
43     public AuthorizationLightComponent(String aName) {
44         super(
45                 aName,
46                 new String[] { "spring/org.wamblee.security.authorization.xml" },
47                 createProvided(), createRequired());
48     }
49
50     private static Map<RequiredInterface, String> createRequired() {
51         Map<RequiredInterface, String> required = new HashMap<RequiredInterface, String>();
52         required.put(new DefaultRequiredInterface("userArccessor",
53                 UserAccessor.class), UserAccessor.class.getName());
54         required.put(new DefaultRequiredInterface("hibernateTemplate",
55                 HibernateTemplate.class), HibernateTemplate.class.getName());
56         return required;
57     }
58
59     private static Map<String, ProvidedInterface> createProvided() {
60         Map<String, ProvidedInterface> provided = new HashMap<String, ProvidedInterface>();
61         provided.put(AuthorizationService.class.getName(),
62                 new DefaultProvidedInterface(AuthorizationService.class
63                         .getName(), AuthorizationService.class));
64         return provided;
65     }
66 }