/hudson-core/src/main/java/hudson/init/InitReactorListener.java
http://github.com/hudson/hudson · Java · 22 lines · 6 code · 2 blank · 14 comment · 0 complexity · bf1ac2559d0ccbf68461e21dcf9badc4 MD5 · raw file
- package hudson.init;
- import org.jvnet.hudson.reactor.ReactorListener;
- import org.kohsuke.MetaInfServices;
- import hudson.model.Hudson;
- /**
- * {@link ReactorListener}s that get notified of the Hudson initialization process.
- *
- * <p>
- * Because the act of initializing plugins is a part of the Hudson initialization,
- * this extension point cannot be implemented in a plugin. You need to place your jar
- * inside {@code WEB-INF/lib} instead.
- *
- * <p>
- * To register, put {@link MetaInfServices} on your implementation.
- *
- * @author Kohsuke Kawaguchi
- * @see Hudson#buildReactorListener()
- */
- public interface InitReactorListener extends ReactorListener {
- }