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