1 package com.atlassian.config.lifecycle.events;
2
3 /**
4 * Event produced when the application is about to shut down, before any shutdown life-cycle
5 * plug-ins are run.
6 */
7 public class ApplicationStoppingEvent extends ConfigEvent
8 {
9 public ApplicationStoppingEvent(Object object)
10 {
11 super(object);
12 }
13 }