Spring Security Framework

org.springframework.security.vote
Class ConsensusBased

java.lang.Object
  extended by org.springframework.security.vote.AbstractAccessDecisionManager
      extended by org.springframework.security.vote.ConsensusBased
All Implemented Interfaces:
InitializingBean, MessageSourceAware, AccessDecisionManager

public class ConsensusBased
extends AbstractAccessDecisionManager

Simple concrete implementation of AccessDecisionManager that uses a consensus-based approach.


Field Summary
 
Fields inherited from class org.springframework.security.vote.AbstractAccessDecisionManager
messages
 
Constructor Summary
ConsensusBased()
           
 
Method Summary
 void decide(Authentication authentication, Object object, ConfigAttributeDefinition config)
          This concrete implementation simply polls all configured AccessDecisionVoters and upon completion determines the consensus of granted vs denied responses.
 boolean isAllowIfEqualGrantedDeniedDecisions()
           
 void setAllowIfEqualGrantedDeniedDecisions(boolean allowIfEqualGrantedDeniedDecisions)
           
 
Methods inherited from class org.springframework.security.vote.AbstractAccessDecisionManager
afterPropertiesSet, checkAllowIfAllAbstainDecisions, getDecisionVoters, isAllowIfAllAbstainDecisions, setAllowIfAllAbstainDecisions, setDecisionVoters, setMessageSource, supports, supports
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ConsensusBased

public ConsensusBased()
Method Detail

decide

public void decide(Authentication authentication,
                   Object object,
                   ConfigAttributeDefinition config)
            throws AccessDeniedException
This concrete implementation simply polls all configured AccessDecisionVoters and upon completion determines the consensus of granted vs denied responses.

If there were an equal number of grant and deny votes, the decision will be based on the isAllowIfEqualGrantedDeniedDecisions() property (defaults to true).

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 method
object - the secured object
config - the configuration attributes associated with the method being invoked
Throws:
AccessDeniedException - if access is denied

isAllowIfEqualGrantedDeniedDecisions

public boolean isAllowIfEqualGrantedDeniedDecisions()

setAllowIfEqualGrantedDeniedDecisions

public void setAllowIfEqualGrantedDeniedDecisions(boolean allowIfEqualGrantedDeniedDecisions)

Spring Security Framework

Copyright © 2004-2010 SpringSource, Inc. All Rights Reserved.