Example usage for org.springframework.security.access AccessDecisionManager interface-usage

List of usage examples for org.springframework.security.access AccessDecisionManager interface-usage

Introduction

In this page you can find the example usage for org.springframework.security.access AccessDecisionManager interface-usage.

Usage

From source file cn.net.withub.demo.bootsec.hello.security.CustomAccessDecisionManager.java

/**
 * 
 *
 * @author Diluka
 */
public class CustomAccessDecisionManager implements AccessDecisionManager {

From source file com.gcrm.security.UrlAccessDecisionManager.java

/**
 * Url access decision manager
 */
public class UrlAccessDecisionManager implements AccessDecisionManager {

    public void decide(Authentication authentication, Object securityObject,

From source file reconf.server.services.security.SecurityAccessDecisionManager.java

@Component
public class SecurityAccessDecisionManager implements AccessDecisionManager {

    @Autowired
    UserProductRepository userProducts;
    @Autowired

From source file org.springframework.security.access.vote.AbstractAccessDecisionManager.java

/**
 * Abstract implementation of {@link AccessDecisionManager}.
 *
 * <p>
 * Handles configuration of a bean context defined list of {@link AccessDecisionVoter}s
 * and the access control behaviour if all voters abstain from voting (defaults to deny

From source file es.osoco.grails.plugins.otp.access.TwoFactorDecisionManager.java

/**
 * Uses the affirmative-based logic for roles, i.e. any in the list will grant access, but allows
 * an authenticated voter to 'veto' access. This allows specification of roles and
 * <code>IS_AUTHENTICATED_FULLY</code> on one line in SecurityConfig.groovy.
 *
 * @author <a href='mailto:rafael.luque@osoco.es'>Rafael Luque</a>

From source file org.unitedinternet.cosmo.dav.acegisecurity.DavAccessDecisionManager.java

/**
 * <p>
 * Makes access control decisions for users and user
 * resources.  Allow service layer to handle authorization
 * for all other resources.
 * </p>