01: /**
02: *
03: */package clime.messadmin.providers.spi;
04:
05: /**
06: * Note: the invocation order of Providers is reversed in case of session/application destruction.
07: * @author Cédrik LIME
08: */
09: public interface ServerLifeCycleProvider extends BaseProvider {
10: /**
11: * Notification that the server initialization
12: * process is starting.
13: */
14: public void serverInitialized();
15:
16: /**
17: * Notification that the server is about to be shut down.
18: */
19: public void serverDestroyed();
20: }
|