Oracle Fusion Middleware
Oracle WebLogic Server API Reference
11g Release 1 (10.3.6)

Part Number E13941-06

weblogic.application
Class ApplicationLifecycleListener

java.lang.Object
  extended by weblogic.application.ApplicationLifecycleListener

public abstract class ApplicationLifecycleListener
extends Object

The abstract class, ApplicationLifecycleListener, should be extended to create listener, startup and shutdown classes that a user may wish to tie into their application lifecycle.

We currently support four stages of the lifecycle for listener registration: preStart, postStart, preStop, and postStop. In addition, the extended classes can be of three types: listeners, startup classes, shutdown classes. Typically, listners will extend the WLS abstract class, ApplicationLifecycleListener and implement all relevant methods (preStop through postStop) and will fire according to the methods implemented. For example, a fully implemented listener class will fire at all lifecycle events (preStart, postStart, preStop, and postStop). A startup or shutdown class with only implement its main method and fire either at preStart (startup) or postStop (shutdown).


Constructor Summary
ApplicationLifecycleListener()
           
 
Method Summary
 void postStart(ApplicationLifecycleEvent evt)
          Provides hooks for listener classes after the application finishes initialization.
 void postStop(ApplicationLifecycleEvent evt)
          Provides hooks for listeners and shut-down classes after the application finishes its shutdown process.
 void preStart(ApplicationLifecycleEvent evt)
          Provides hooks for listeners and start-up classes before the application finishes initialization.
 void preStop(ApplicationLifecycleEvent evt)
          Provides hooks for listener classes when the application commmences its shutdown process.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ApplicationLifecycleListener

public ApplicationLifecycleListener()
Method Detail

preStart

public void preStart(ApplicationLifecycleEvent evt)
Provides hooks for listeners and start-up classes before the application finishes initialization.


postStart

public void postStart(ApplicationLifecycleEvent evt)
Provides hooks for listener classes after the application finishes initialization.


preStop

public void preStop(ApplicationLifecycleEvent evt)
Provides hooks for listener classes when the application commmences its shutdown process.


postStop

public void postStop(ApplicationLifecycleEvent evt)
Provides hooks for listeners and shut-down classes after the application finishes its shutdown process.


Copyright 1996, 2011, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners.

Oracle Fusion Middleware
Oracle WebLogic Server API Reference
11g Release 1 (10.3.6)

Part Number E13941-06