1 16 17 package org.apache.catalina.cluster; 18 19 26 import org.apache.catalina.LifecycleException; 27 import java.io.IOException ; 28 import java.net.URL ; 29 30 public interface ClusterDeployer extends MessageListener { 31 34 public String info = "ClusterDeployer/1.0"; 35 39 public void start() throws Exception ; 40 41 45 public void stop() throws LifecycleException; 46 47 51 54 80 public void install(String contextPath, URL war) throws IOException ; 81 82 100 public void remove(String contextPath, boolean undeploy) throws IOException ; 101 102 105 public void backgroundProcess(); 106 } 107 | Popular Tags |