/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

  1. package hudson.init;
  2. import org.jvnet.hudson.reactor.ReactorListener;
  3. import org.kohsuke.MetaInfServices;
  4. import hudson.model.Hudson;
  5. /**
  6. * {@link ReactorListener}s that get notified of the Hudson initialization process.
  7. *
  8. * <p>
  9. * Because the act of initializing plugins is a part of the Hudson initialization,
  10. * this extension point cannot be implemented in a plugin. You need to place your jar
  11. * inside {@code WEB-INF/lib} instead.
  12. *
  13. * <p>
  14. * To register, put {@link MetaInfServices} on your implementation.
  15. *
  16. * @author Kohsuke Kawaguchi
  17. * @see Hudson#buildReactorListener()
  18. */
  19. public interface InitReactorListener extends ReactorListener {
  20. }