2 * Copyright 2005-2010 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.security.authorization;
18 import java.util.ArrayList;
19 import java.util.List;
21 import javax.persistence.CascadeType;
22 import javax.persistence.DiscriminatorValue;
23 import javax.persistence.Entity;
24 import javax.persistence.ManyToMany;
25 import javax.persistence.OneToMany;
26 import javax.persistence.OrderColumn;
27 import javax.persistence.Transient;
29 import org.wamblee.usermgt.User;
30 import org.wamblee.usermgt.UserAccessor;
33 * Default implementation of an authorization service. To determine whether
34 * access to a resource is allowed, the service consults a number of
35 * authorization rules in a fixed order. The first rule that gives a result
36 * GRANTED or DENIED determines the result of the evaluation. Rules that return
37 * any other result are ignoed. If none of the rules match, than access is
40 * @author Erik Brakkee
43 @DiscriminatorValue("DEFAULT")
44 public class DefaultAuthorizationService extends AbstractAuthorizationService {
48 * List of ordered authorization rules.
50 @OneToMany(cascade = CascadeType.ALL, orphanRemoval = true, targetEntity = AbstractAuthorizationRule.class)
51 @OrderColumn(name = "RULE_INDEX")
52 private List<AuthorizationRule> rules;
55 * User accessor used to obtain the current user.
58 private UserAccessor userAccessor;
61 * Name for this instance of the authorization service.
66 * Constructs the service.
71 * Name of this instance of the service.
73 public DefaultAuthorizationService(UserAccessor aAccessor, String aName) {
74 rules = new ArrayList<AuthorizationRule>();
75 userAccessor = aAccessor;
80 * Constructs the authorization service.
82 public DefaultAuthorizationService() {
83 rules = new ArrayList<AuthorizationRule>();
89 * Sets the user accessor.
91 * @param aUserAccessor
95 public void setUserAccessor(UserAccessor aUserAccessor) {
96 userAccessor = aUserAccessor;
103 * org.wamblee.security.authorization.AuthorizationService#isAllowed(java
104 * .lang.Object, org.wamblee.security.authorization.Operation)
106 public boolean isAllowed(Object aResource, Operation aOperation) {
107 User user = userAccessor.getCurrentUser();
109 for (AuthorizationRule rule : rules) {
110 switch (rule.isAllowed(aResource, aOperation, user)) {
125 * @see org.wamblee.security.authorization.AuthorizationService#check(T,
126 * org.wamblee.security.authorization.Operation)
128 public <T> T check(T aResource, Operation aOperation) {
129 if (!isAllowed(aResource, aOperation)) {
130 throw new AuthorizationException(aResource, aOperation);
136 protected String getName() {
140 public void setName(String aName) {
147 * @see org.wamblee.security.authorization.AuthorizationService#getRules()
149 public AuthorizationRule[] getRules() {
150 return rules.toArray(new AbstractAuthorizationRule[0]);
157 * org.wamblee.security.authorization.AuthorizationService#appendRule(org
158 * .wamblee.security.authorization.AuthorizationRule)
160 public void appendRule(AuthorizationRule aRule) {
168 * org.wamblee.security.authorization.AuthorizationService#insertRuleAfter
169 * (int, org.wamblee.security.authorization.AuthorizationRule)
171 public void insertRuleAfter(int aIndex, AuthorizationRule aRule) {
172 rules.add(aIndex, aRule);
179 * org.wamblee.security.authorization.AuthorizationService#removeRule(int)
181 public void removeRule(int aIndex) {
182 rules.remove(aIndex);
190 protected List<AuthorizationRule> getMappedRules() {
200 protected void setMappedRules(List<AuthorizationRule> aRules) {