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

io.undertow.servlet.api.LifecycleInterceptor Maven / Gradle / Ivy

The newest version!
package io.undertow.servlet.api;

import jakarta.servlet.Filter;
import jakarta.servlet.Servlet;
import jakarta.servlet.ServletException;

/**
 * Class that is run around invocations of servlet and filter lifecycle methods (init and destroy).
 *
 * Note that this only deals with lifecycle methods that are defined by the servlet spec. @POstConstruct,
 * PreDestroy and Inject methods are not handled.
 *
 * @author Stuart Douglas
 */
public interface LifecycleInterceptor {

    void init(ServletInfo servletInfo, Servlet servlet, LifecycleContext context) throws ServletException;

    void init(FilterInfo filterInfo, Filter filter,  LifecycleContext context) throws ServletException;

    void destroy(ServletInfo servletInfo, Servlet servlet,  LifecycleContext context) throws ServletException;

    void destroy(FilterInfo filterInfo, Filter filter, LifecycleContext context) throws ServletException;

    public interface LifecycleContext {
        void proceed() throws ServletException;
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy