Package com.ibm.websphere.servlet.event
Interface ApplicationListener
- All Superinterfaces:
EventListener
Event listener interface used for notifications about the application.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Triggered when the application is activated to receive external requests.void
Final application event that occurs before the application is terminated by the server process.void
Triggered when the application is started.void
Triggered when the application is taken offline.
-
Method Details
-
onApplicationStart
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. -
onApplicationEnd
Final application event that occurs before the application is terminated by the server process. -
onApplicationAvailableForService
Triggered when the application is activated to receive external requests.
-