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

clime.messadmin.providers.spi.ServerLifeCycleProvider 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;


/**
 * Note: the invocation order of Providers is reversed in case of session/application destruction.
 * @author Cédrik LIME
 */
public interface ServerLifeCycleProvider extends BaseProvider {
	/**
	 * Notification that the server initialization
	 * process is starting.
	 */
    public void serverInitialized();

	/**
	 * Notification that the server is about to be shut down.
	 */
    public void serverDestroyed();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy