1   package com.atlassian.config.lifecycle.events;
2   
3   /**
4    * Event produced when the application has completed starting up, and all life-cycle event plug-ins have had
5    * their start-up methods called successfully.
6    */
7   public class ApplicationStartedEvent extends ConfigEvent
8   {
9       public ApplicationStartedEvent(Object object)
10      {
11          super(object);
12      }
13  }