001package common.http.interceptor; 002 003import javax.servlet.ServletException; 004import javax.servlet.http.HttpServletRequest; 005import javax.servlet.http.HttpServletResponse; 006import java.io.IOException; 007 008/** 009 * Rapprsenta un'operazione che accetta un oggetto {@link javax.servlet.http.HttpServletRequest}, un oggetto {@link HttpServletResponse} 010 * e può lanciare {@link ServletException} oppure {@link IOException}.</br> 011 * 012 * Questa è un'interfaccia funzionale il cui metodo funzionale è {@link HttpServletBiConsumer#handle(HttpServletRequest, HttpServletResponse)} 013 */ 014@FunctionalInterface 015public interface HttpServletBiConsumer { 016 void handle(HttpServletRequest request, HttpServletResponse response) 017 throws ServletException, IOException; 018}