View Javadoc

1   package com.atlassian.config.lifecycle.events;
2   
3   import com.atlassian.event.Event;
4   
5   /**
6    * Event produced when the application is about to shut down, before any shutdown lifecycle
7    * plugins are run.
8    */
9   public class ApplicationStoppingEvent extends Event implements LifecycleEvent
10  {
11      public ApplicationStoppingEvent(Object object)
12      {
13          super(object);
14      }
15  }