Package org.springframework.security.access.vote

Examples of org.springframework.security.access.vote.AbstractAccessDecisionManager


    Authentication authentication = SecurityContextHolder.getContext().getAuthentication();
    Collection<ConfigAttribute> configAttributes = getConfigAttributes(rule);
    if (accessDecisionManager != null) {
      accessDecisionManager.decide(authentication, object, configAttributes);
    } else {
      AbstractAccessDecisionManager abstractAccessDecisionManager;
      List<AccessDecisionVoter> voters = new ArrayList<AccessDecisionVoter>();
      voters.add(new RoleVoter());
      if (rule.getComparisonType() == SecurityRule.COMPARISON_ANY) {
        abstractAccessDecisionManager = new AffirmativeBased();
      } else if (rule.getComparisonType() == SecurityRule.COMPARISON_ALL) {
        abstractAccessDecisionManager = new UnanimousBased();
      } else {
        throw new IllegalStateException("Unknown SecurityRule match type: " + rule.getComparisonType());
      }
      abstractAccessDecisionManager.setDecisionVoters(voters);
      abstractAccessDecisionManager.decide(authentication, object, configAttributes);
    }
  }
View Full Code Here

TOP

Related Classes of org.springframework.security.access.vote.AbstractAccessDecisionManager

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.