View Javadoc

1   /*
2    * Created by IntelliJ IDEA.
3    * User: Mike
4    * Date: Aug 12, 2004
5    * Time: 3:03:08 PM
6    */
7   package com.atlassian.johnson.event;
8   
9   import com.atlassian.johnson.JohnsonEventContainer;
10  
11  import javax.servlet.ServletContext;
12  
13  /**
14   * A check that is run every time the application is started.
15   */
16  public interface ApplicationEventCheck extends EventCheck
17  {
18      void check(JohnsonEventContainer eventContainer, ServletContext context);
19  }