package sahoo.hello.startup; import org.jvnet.hk2.annotations.Service; import com.sun.enterprise.module.bootstrap.ModuleStartup; import com.sun.enterprise.module.bootstrap.StartupContext; /** * This is the first class to be instantiated by HK2 module system. * This is the entry point to application domain. * * @author Sanjeeb.Sahoo@Sun.COM */ @Service public class MyStartup implements ModuleStartup { public void setStartupContext(StartupContext context) { } public void run() { System.out.println("Hello World - My first HK2 Sample"); } }