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

clime.messadmin.providers.spi.ApplicationLifeCycleProvider Maven / Gradle / Ivy

Go to download

Notification system and Session administration for J2EE Web Applications

There is a newer version: 4.1.1
Show newest version
/**
 * 
 */
package clime.messadmin.providers.spi;

import javax.servlet.ServletContext;

/**
 * Note: the invocation order of Providers is reversed in case of session/application destruction.
 * @author Cédrik LIME
 */
public interface ApplicationLifeCycleProvider extends BaseProvider {
	/**
	 * Notification that the web application initialization
	 * process is starting.
	 * All ServletContextListeners are notified of context
	 * initialization before any filter or servlet in the web
	 * application is initialized.
	 */
    public void contextInitialized(ServletContext servletContext);

	/**
	 * Notification that the servlet context is about to be shut down.
	 * All servlets and filters have been destroy()ed before any
	 * ServletContextListeners are notified of context
	 * destruction.
	 */
    public void contextDestroyed(ServletContext servletContext);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy