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

com.pig4cloud.pigx.common.security.handler.AuthenticationSuccessHandler Maven / Gradle / Ivy

There is a newer version: 3.10.0
Show newest version
package com.pig4cloud.pigx.common.security.handler;

import org.springframework.security.core.Authentication;

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

/**
 * @author lengleng
 * @date 2020/03/25
 * token 发放成功处理
 */
public interface AuthenticationSuccessHandler {

	/**
	 * 业务处理
	 *
	 * @param authentication 认证信息
	 * @param request        请求信息
	 * @param response       响应信息
	 */
	void handle(Authentication authentication, HttpServletRequest request, HttpServletResponse response);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy