List of usage examples for org.springframework.security.web.access WebInvocationPrivilegeEvaluator isAllowed
public boolean isAllowed(String contextPath, String uri, String method, Authentication authentication);
From source file:org.socialsignin.springsocial.security.signin.SpringSocialSecurityAccessDeniedHandler.java
private boolean providerCombinationAllowsAccessForEvaluator(HttpServletRequest request, Authentication existingAuthentication, WebInvocationPrivilegeEvaluator evaluator, Set<String> additionProviderIdsCombination) { return evaluator.isAllowed(request.getContextPath(), getUri(request), request.getMethod(), springSocialSecurityAuthenticationFactory.updateAuthenticationForNewProviders( existingAuthentication, additionProviderIdsCombination)); }