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

com.iframework.uaa.auth.autoconfigure.service.AuthenticationService Maven / Gradle / Ivy

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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy