All Downloads are FREE. Search and download functionalities are using the official Maven repository.

JavaSpring.libraries.spring-boot.CustomLogoutSuccessHandler Maven / Gradle / Ivy

There is a newer version: 0.9.25
Show newest version
package io.swagger.configuration;

import java.io.IOException;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.springframework.security.core.Authentication;
import org.springframework.security.web.authentication.logout.LogoutSuccessHandler;
import org.springframework.security.web.authentication.logout.SimpleUrlLogoutSuccessHandler;

public class CustomLogoutSuccessHandler extends SimpleUrlLogoutSuccessHandler
		implements LogoutSuccessHandler {

	public CustomLogoutSuccessHandler() {
		super();
	}

	// API

	@Override
	public void onLogoutSuccess(final HttpServletRequest request, final HttpServletResponse response, final Authentication authentication) throws IOException, ServletException {
		final String refererUrl = request.getHeader("Referer");
		System.out.println(refererUrl);

		super.onLogoutSuccess(request, response, authentication);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy