List of usage examples for org.springframework.security.web.authentication LoginUrlAuthenticationEntryPoint subclass-usage
From source file th.co.geniustree.osgi.prototype.central.security.DefaultLoginUrlAuthenticationEntryPoint.java
/** * * @author anonymous */ public class DefaultLoginUrlAuthenticationEntryPoint extends LoginUrlAuthenticationEntryPoint {
From source file fr.mael.microrss.web.LoginEntryPoint.java
/**
* Entry Point used to override spring security behavior.
* It is used for two cases :
* - There is an authentication error on an ajax request (for instance : session expired)
* - There is an authentication error for a request sent by a mobile
*
From source file com.nec.harvest.security.HarvestLoginUrlAuthenticationEntryPoint.java
/**
* Login URL Authentication entry point
* http://www.bmchild.com/2012/05/hibernate-with-clause-hql-equivalent-of.html
*
* @author sondn
* @version HarvestLoginUrlAuthenticationEntryPoint.java May 29, 2014
From source file org.codehaus.groovy.grails.plugins.springsecurity.AjaxAwareAuthenticationEntryPoint.java
/** * @author <a href='mailto:burt@burtbeckwith.com'>Burt Beckwith</a> */ public class AjaxAwareAuthenticationEntryPoint extends LoginUrlAuthenticationEntryPoint { private String ajaxLoginFormUrl;
From source file com.hh.jbpm.CustomAuth.java
public class CustomAuth extends LoginUrlAuthenticationEntryPoint { @Override public void commence(HttpServletRequest request, HttpServletResponse response, AuthenticationException authException) throws IOException, ServletException { super.commence(request, response, authException); }
From source file demo.oauth.server.CustomAuth.java
public class CustomAuth extends LoginUrlAuthenticationEntryPoint { @Override public void commence(HttpServletRequest request, HttpServletResponse response, AuthenticationException authException) throws IOException, ServletException { super.commence(request, response, authException); }
From source file org.hoteia.qalingo.core.security.fo.component.LoginUrlAuthenticationEntryPoint.java
public class LoginUrlAuthenticationEntryPoint extends org.springframework.security.web.authentication.LoginUrlAuthenticationEntryPoint { private final Logger logger = LoggerFactory.getLogger(getClass()); protected UrlService urlService;
From source file grails.plugin.springsecurity.web.authentication.AjaxAwareAuthenticationEntryPoint.java
import org.springframework.util.Assert; import java.io.IOException; /** * @author <a href='mailto:burt@burtbeckwith.com'>Burt Beckwith</a>
From source file com.erudika.para.security.SimpleAuthenticationEntryPoint.java
/** * * @author Alex Bogdanovski [alex@erudika.com] */ public class SimpleAuthenticationEntryPoint extends LoginUrlAuthenticationEntryPoint {
From source file org.jamwiki.authentication.JAMWikiAuthenticationProcessingFilterEntryPoint.java
/**
* This class is a hack implemented to work around the fact that the default
* Spring Security classes can only redirect to a single, hard-coded URL. Due to the
* fact that JAMWiki may have multiple virtual wikis this class overrides some
* of the default Spring Security behavior to allow additional flexibility. Hopefully
* future versions of Spring Security will add additional flexibility and this class