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

com.authkit.servlet.Handler Maven / Gradle / Ivy

There is a newer version: 0.3.0
Show newest version
package com.authkit.servlet;

import javax.servlet.FilterChain;
import javax.servlet.ServletException;
import javax.servlet.ServletRequest;
import javax.servlet.ServletResponse;
import java.io.IOException;
import java.security.Principal;

public interface Handler {

    void init(Config config);

    void handleUnauthenticated(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException;

    void handleAuthenticated(Principal principal, ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy