Package com.ibm.websphere.servlet.event
Interface ApplicationListener
- 
- All Superinterfaces:
- java.util.EventListener
 
 public interface ApplicationListener extends java.util.EventListenerEvent listener interface used for notifications about the application.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonApplicationAvailableForService(ApplicationEvent evt)Triggered when the application is activated to receive external requests.voidonApplicationEnd(ApplicationEvent evt)Final application event that occurs before the application is terminated by the server process.voidonApplicationStart(ApplicationEvent evt)Triggered when the application is started.voidonApplicationUnavailableForService(ApplicationEvent evt)Triggered when the application is taken offline.
 
- 
- 
- 
Method Detail- 
onApplicationStartvoid onApplicationStart(ApplicationEvent evt) Triggered when the application is started. This event is triggered before any object initializations occur within the application (including auto-start servlet initialization). This method is the perfect place for applications to register for other events and to setup the application before any other objects are created by the application.
 - 
onApplicationEndvoid onApplicationEnd(ApplicationEvent evt) Final application event that occurs before the application is terminated by the server process.
 - 
onApplicationAvailableForServicevoid onApplicationAvailableForService(ApplicationEvent evt) Triggered when the application is activated to receive external requests.
 - 
onApplicationUnavailableForServicevoid onApplicationUnavailableForService(ApplicationEvent evt) Triggered when the application is taken offline. When an application is taken offline, all requests to the application will be denied.
 
- 
 
-