BEA Systems, Inc.

BEA WebLogic Server 9.0 API Reference


weblogic.application
Class ApplicationLifecycleListener

java.lang.Object
  extended byweblogic.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).

Copyright © 2005 BEA Systems, Inc. All Rights Reserved.

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

postStart

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

Throws:
weblogic.application.ApplicationException

postStop

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

Throws:
weblogic.application.ApplicationException

preStart

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

Throws:
weblogic.application.ApplicationException

preStop

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

Throws:
weblogic.application.ApplicationException

Documentation is available at
http://download.oracle.com/docs/cd/E13222_01/wls/docs90
Copyright 2005 BEA Systems Inc.