1 17 package org.apache.geronimo.system.main; 18 19 import org.apache.geronimo.kernel.Kernel; 20 import org.apache.geronimo.kernel.repository.Artifact; 21 22 28 public interface StartupMonitor { 29 void systemStarting(long startTime); 31 void systemStarted(Kernel kernel); 32 void foundModules(Artifact[] modules); 33 void moduleLoading(Artifact module); 34 void moduleLoaded(Artifact module); 35 void moduleStarting(Artifact module); 36 void moduleStarted(Artifact module); 37 void startupFinished(); 38 39 void serverStartFailed(Exception problem); 41 } 42 | Popular Tags |