Example usage for org.springframework.security.web.authentication SimpleUrlAuthenticationSuccessHandler subclass-usage

List of usage examples for org.springframework.security.web.authentication SimpleUrlAuthenticationSuccessHandler subclass-usage

Introduction

In this page you can find the example usage for org.springframework.security.web.authentication SimpleUrlAuthenticationSuccessHandler subclass-usage.

Usage

From source file com.mycompany.licit.custom.RESTAuthenticationSuccessHandler.java

@Component
public class RESTAuthenticationSuccessHandler extends SimpleUrlAuthenticationSuccessHandler {

    @Override
    public void onAuthenticationSuccess(HttpServletRequest request, HttpServletResponse response,
            Authentication authentication) throws IOException, ServletException {

From source file com.ucrisko.libroomreserve.config.AuthenticationSuccess.java

@Component
public class AuthenticationSuccess extends SimpleUrlAuthenticationSuccessHandler {

    @Override
    public void onAuthenticationSuccess(HttpServletRequest request, HttpServletResponse response,
            Authentication authentication) throws IOException, ServletException {

From source file com.tamnd.app.config.security.AuthSuccess.java

/**
 *
 * @author tamnd
 */
@Component
public class AuthSuccess extends SimpleUrlAuthenticationSuccessHandler {

From source file com.tamnd2.basicwebapp.security.AuthSuccess.java

/**
 *
 * @author tamnd2
 */
@Component
public class AuthSuccess extends SimpleUrlAuthenticationSuccessHandler {

From source file org.dspace.rest.authentication.NoRedirectAuthenticationLoginSuccessHandler.java

/**
 * @author kevinvandevelde at atmire.com
 *
 * Spring redirects to the home page after a successfull login. This success handles ensures that this is NOT the case.
 */
public class NoRedirectAuthenticationLoginSuccessHandler extends SimpleUrlAuthenticationSuccessHandler {

From source file hotel.web.util.HotelAuthenticationHandler.java

/**
 *
 * @author Mike
 */
public class HotelAuthenticationHandler extends SimpleUrlAuthenticationSuccessHandler {
    @Override

From source file com.lennonjesus.auth.security.handler.AjaxAuthenticationSuccessHandler.java

/**
 * Spring Security success handler, specialized for Ajax requests.
 */
@Component
public class AjaxAuthenticationSuccessHandler extends SimpleUrlAuthenticationSuccessHandler {

From source file hotel.web.util.MyAuthenticationHandler.java

/**
 *
 * @author jlombardo
 */
public class MyAuthenticationHandler extends SimpleUrlAuthenticationSuccessHandler {

From source file com.iselect.web.security.CustomSuccessHandler.java

/**
 *
 * @author Hiep
 */
@Component
public class CustomSuccessHandler extends SimpleUrlAuthenticationSuccessHandler {

From source file com.safasoft.treeweb.auth.CustomAuthenticationSuccessHandler.java

/**
 * To do action when user have logged successfully
 * Currently used to create user session info and record user login
 * @created Apr 16, 2016
 * @author awal
 */