Example usage for org.springframework.security.access.expression AbstractSecurityExpressionHandler subclass-usage

List of usage examples for org.springframework.security.access.expression AbstractSecurityExpressionHandler subclass-usage

Introduction

In this page you can find the example usage for org.springframework.security.access.expression AbstractSecurityExpressionHandler subclass-usage.

Usage

From source file org.web4thejob.security.CustomWebSecurityExpressionHandler.java

/**
 * @author Veniamin Isaias
 * @since 1.1.1
 */

public class CustomWebSecurityExpressionHandler extends AbstractSecurityExpressionHandler<FilterInvocation> {

From source file org.jasig.portlet.blackboardvcportlet.security.SimpleSecurityExpressionHandler.java

@Service
public class SimpleSecurityExpressionHandler extends AbstractSecurityExpressionHandler<Map<String, Object>> {
    private final AuthenticationTrustResolver trustResolver = new AuthenticationTrustResolverImpl();

    @Override
    protected StandardEvaluationContext createEvaluationContextInternal(Authentication authentication,

From source file org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler.java

/**
 * The standard implementation of {@code MethodSecurityExpressionHandler}.
 * <p>
 * A single instance should usually be shared amongst the beans that require expression
 * support.
 *