Removed DOCUMENT ME comments that were generated and applied source code
[utils] / security / src / main / java / org / wamblee / usermgt / hibernate / AuthorizationComponent.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.springframework.transaction.PlatformTransactionManager;
21
22 import org.wamblee.cache.EhCache;
23
24 import org.wamblee.security.authorization.AuthorizationService;
25 import org.wamblee.security.authorization.hibernate.AuthorizationMappingFiles;
26
27 import org.wamblee.system.adapters.DefaultContainer;
28 import org.wamblee.system.adapters.ObjectConfiguration;
29 import org.wamblee.system.components.ORMappingConfig;
30 import org.wamblee.system.core.Component;
31 import org.wamblee.system.core.DefaultProvidedInterface;
32 import org.wamblee.system.core.DefaultRequiredInterface;
33 import org.wamblee.system.core.ProvidedInterface;
34 import org.wamblee.system.core.Scope;
35 import org.wamblee.system.spring.component.HibernateComponent;
36
37 import org.wamblee.usermgt.UserAccessor;
38 import org.wamblee.usermgt.UserAdministration;
39 import org.wamblee.usermgt.UserGroupRepositoryComponent;
40
41 import java.io.IOException;
42
43 import javax.sql.DataSource;
44
45 /**
46  * 
47  * @author $author$
48  * @version $Revision$
49  */
50 public class AuthorizationComponent extends DefaultContainer {
51     private ProvidedInterface TRANSACTION_MGR = new DefaultProvidedInterface(
52         "transactionManager", PlatformTransactionManager.class);
53
54     private ProvidedInterface HIBERNATE_TEMPLATE = new DefaultProvidedInterface(
55         "hibernateTemplate", HibernateTemplate.class);
56
57     private ProvidedInterface AUTHORIZATION_SERVICE = new DefaultProvidedInterface(
58         "authorizationService", AuthorizationService.class);
59
60     /**
61      * Creates a new AuthorizationComponent object.
62      * 
63      * 
64      */
65     public AuthorizationComponent(String aName, boolean aExposeInternals)
66         throws IOException {
67         super(aName);
68
69         ObjectConfiguration authConfig = new ObjectConfiguration(
70             AuthorizationMappingFiles.class);
71         authConfig.getSetterConfig().initAllSetters();
72         addComponent("mappingFiles", new AuthorizationMappingFiles(),
73             authConfig);
74
75         Component<?> hibernate = new HibernateComponent("hibernate");
76         addComponent(hibernate);
77
78         Component<?> authorization = new AuthorizationLightComponent(
79             "authorization");
80         addComponent(authorization);
81
82         addRequiredInterface(new DefaultRequiredInterface("datasource",
83             DataSource.class));
84         addRequiredInterface(new DefaultRequiredInterface("userAccessor",
85             UserAccessor.class));
86         addRequiredInterface(new DefaultRequiredInterface("ormconfig",
87             ORMappingConfig.class));
88
89         if (aExposeInternals) {
90             addProvidedInterface(TRANSACTION_MGR);
91             addProvidedInterface(HIBERNATE_TEMPLATE);
92         }
93
94         addProvidedInterface(AUTHORIZATION_SERVICE);
95     }
96 }