com.iframework.uaa.auth.autoconfigure.service.AuthenticationService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of if-uaa-auth-spring-boot-autoconfigure Show documentation
Show all versions of if-uaa-auth-spring-boot-autoconfigure Show documentation
基础框架功能,为spring boot starter 定制增强
The newest version!
package com.iframework.uaa.auth.autoconfigure.service;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
public interface AuthenticationService {
void successfulAuthentication(HttpServletRequest request, HttpServletResponse response, String accessToken);
void unsuccessfulAuthentication(HttpServletRequest request, HttpServletResponse response);
}