Example usage for org.springframework.security.web.access AccessDeniedHandler interface-usage

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

Introduction

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

Usage

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

/**
 * <p>
 * Handles <code>AccessDeniedException</code> by sending a 403 response
 * enclosing an XML body describing the error.
 * </p>
 */

From source file eu.eidas.springsecu.EidasAccessDeniedHandler.java

/**
 *
 * @author mrwc1264
 */
public class EidasAccessDeniedHandler implements AccessDeniedHandler {
    static final Logger logger = LoggerFactory.getLogger(EidasAccessDeniedHandler.class);

From source file com.bxf.hradmin.security.AccessDeniedHandler.java

/**
 * AccessDeniedHandler
 *
 * @since 2016-06-25
 * @author Bo-Xuan Fan
 */

From source file org.codehaus.groovy.grails.plugins.springsecurity.AjaxAwareAccessDeniedHandler.java

/**
 * @author <a href='mailto:burt@burtbeckwith.com'>Burt Beckwith</a>
 */
public class AjaxAwareAccessDeniedHandler implements AccessDeniedHandler, InitializingBean {

    private String errorPage;

From source file org.opendatakit.common.security.spring.GWTAccessDeniedHandlerImpl.java

/**
 * An AccessDenied handler that uses the presence of a special header to identify
 * GWT requests and causes those requests to have an 
 * {@link org.opendatakit.common.security.client.exception.AccessDeniedException} thrown
 * within the GWT RPC mechanism.  This necessitates that all <code>GWT.create()</code>
 * requests be handled through the <code>SecureGWT</code> class.

From source file jeeves.config.springutil.JeevesAccessDeniedHandler.java

/**
 * Handles Access Denied exceptions during spring security.
 *
 * Created by Jesse on 12/5/13.
 */
public class JeevesAccessDeniedHandler implements AccessDeniedHandler {

From source file ro.allevo.fintpws.security.CustomAccessDeniedHandler.java

public class CustomAccessDeniedHandler implements AccessDeniedHandler {

    private static String ERROR_FORBIDDEN = "resource forbidden";

    public CustomAccessDeniedHandler() {
    }

From source file grails.plugin.springsecurity.web.access.AjaxAwareAccessDeniedHandler.java

/**
 * @author <a href='mailto:burt@burtbeckwith.com'>Burt Beckwith</a>
 */
public class AjaxAwareAccessDeniedHandler implements AccessDeniedHandler, InitializingBean {

    protected String errorPage;

From source file net.prasenjit.auth.config.CustomAjaxAwareHandler.java

/**
 * Created by PRASENJIT-NET on 4/21/2016.
 *
 * @author PRASEN
 * @version $Id: $Id
 */

From source file org.cloudfoundry.identity.uaa.security.CsrfAwareEntryPointAndDeniedHandler.java

public class CsrfAwareEntryPointAndDeniedHandler implements AccessDeniedHandler, AuthenticationEntryPoint {

    private static Log logger = LogFactory.getLog(CsrfAwareEntryPointAndDeniedHandler.class);

    private LoginUrlAuthenticationEntryPoint loginEntryPoint;
    private LoginUrlAuthenticationEntryPoint csrfEntryPoint;