List of usage examples for org.springframework.security.web.access AccessDeniedHandlerImpl subclass-usage
From source file com.nec.harvest.security.web.access.AccessDeniedHandler.java
/**
* This class will be handled the access denied exception
*
* @author sondn
*
*/
From source file com.erudika.para.security.SimpleAccessDeniedHandler.java
/** * * @author Alex Bogdanovski [alex@erudika.com] */ public class SimpleAccessDeniedHandler extends AccessDeniedHandlerImpl {
From source file be.dnsbelgium.rdap.spring.security.RDAPErrorHandler.java
public class RDAPErrorHandler extends AccessDeniedHandlerImpl { private final ObjectMapper mapper; public RDAPErrorHandler() { super();
From source file org.jamwiki.authentication.JAMWikiAccessDeniedHandler.java
/** * This class is a hack implemented to support virtual wikis and Spring Security. */ public class JAMWikiAccessDeniedHandler extends AccessDeniedHandlerImpl { /** Standard logger. */
From source file org.jtalks.poulpe.web.AuthenticationCleaningAccessDeniedExceptionHandler.java
/**
* Changes the standard Spring Security way for processing forbidden urls by sending to a browser redirect response
* (301) instead of Spring Security's standard Access denied response (403).
* <p/>
* Class supports 2 types of redirecting: <ol> <li>A standard one which redirects user to defaultErrorUrl in case there
* is an common access denied problem.</li> <li>A map of alternative routes - which user will be redirected to in case
From source file ru.mystamps.web.support.spring.security.LogCsrfEventAndShow403PageForAccessDenied.java
/** * @author Sergey Chechenev */ public class LogCsrfEventAndShow403PageForAccessDenied extends AccessDeniedHandlerImpl { private final SiteService siteService;
From source file org.socialsignin.springsocial.security.signin.SpringSocialSecurityAccessDeniedHandler.java
/**
* An AccessDeniedHandler which attempts to determine a providerid which would give a user access to a given url. If this determination can be made, this
* handler forwards the user to the connection page for this provider.
*
* @author Michael Lavelle
*/