2 * Copyright 2008 the original author or authors.
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
16 package org.wamblee.usermgt.hibernate;
18 import java.util.HashMap;
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;
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.
38 * @author Erik Brakkee
41 public class AuthorizationLightComponent extends SpringComponent {
43 public AuthorizationLightComponent(String aName) {
46 new String[] { "spring/org.wamblee.security.authorization.xml" },
47 createProvided(), createRequired());
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());
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));