1 23 24 package com.sun.enterprise.web; 25 26 import org.apache.catalina.Logger; 27 28 public interface PwcWebContainerLifecycle { 29 30 public void onInitialization(String rootDir, String instanceName, 31 boolean useNaming, Logger logger, 32 String embeddedClassName) 33 throws Exception ; 34 35 43 public void onStartup() 44 throws Exception ; 45 46 54 public void onReady() throws Exception ; 55 56 62 public void onShutdown() 63 throws Exception ; 64 65 74 public void onTermination() 75 throws Exception ; 76 } 77 | Popular Tags |