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.annotation.Nonnull;
12 import javax.servlet.ServletContext;
13
14 /**
15 * A check that is run every time the application is started.
16 */
17 public interface ApplicationEventCheck extends EventCheck {
18
19 void check(@Nonnull JohnsonEventContainer eventContainer, @Nonnull ServletContext context);
20 }