org.springframework.security.vote
Class AffirmativeBased
java.lang.Object
org.springframework.security.vote.AbstractAccessDecisionManager
org.springframework.security.vote.AffirmativeBased
- All Implemented Interfaces:
- InitializingBean, MessageSourceAware, AccessDecisionManager
public class AffirmativeBased
- extends AbstractAccessDecisionManager
Simple concrete implementation of AccessDecisionManager
that grants access if any
AccessDecisionVoter
returns an affirmative response.
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
AffirmativeBased
public AffirmativeBased()
decide
public void decide(Authentication authentication,
Object object,
ConfigAttributeDefinition config)
throws AccessDeniedException
- This concrete implementation simply polls all configured
AccessDecisionVoter
s and grants access
if any AccessDecisionVoter
voted affirmatively. Denies access only if there was a deny vote AND no
affirmative votes.If every AccessDecisionVoter
abstained from voting, the decision will
be based on the AbstractAccessDecisionManager.isAllowIfAllAbstainDecisions()
property (defaults to false).
- Parameters:
authentication
- the caller invoking the methodobject
- the secured objectconfig
- the configuration attributes associated with the method being invoked
- Throws:
AccessDeniedException
- if access is denied
Copyright © 2004-2010 SpringSource, Inc. All Rights Reserved.