1 /*
2 * Created by IntelliJ IDEA.
3 * User: Mike
4 * Date: May 28, 2004
5 * Time: 2:39:49 PM
6 */
7 package com.atlassian.spring.container;
8
9 import org.springframework.context.ApplicationEvent;
10
11 /**
12 * An event published when the ContainerContext has been fully loaded and the ContainerManager is ready for us.
13 *
14 * @see com.atlassian.spring.container.ContainerContext
15 * @see com.atlassian.spring.container.ContainerContextLoaderListener
16 */
17 public class ContainerContextLoadedEvent extends ApplicationEvent
18 {
19 public ContainerContextLoadedEvent(Object o)
20 {
21 super(o);
22 }
23 }