View Javadoc

1   package com.atlassian.config.lifecycle.events;
2   
3   import com.atlassian.event.Event;
4   
5   /**
6    * Event produced when the application has shut down, and all the lifecycle plugins have had their
7    * shutdown methods called.
8    */
9   public class ApplicationStoppedEvent extends Event implements LifecycleEvent
10  {
11      public ApplicationStoppedEvent(Object object)
12      {
13          super(object);
14      }
15  }