1 18 package org.apache.tools.ant.taskdefs.optional.j2ee; 19 20 import org.apache.tools.ant.BuildException; 21 22 28 public interface HotDeploymentTool { 29 30 String ACTION_DELETE = "delete"; 31 32 33 String ACTION_DEPLOY = "deploy"; 34 35 36 String ACTION_LIST = "list"; 37 38 39 String ACTION_UNDEPLOY = "undeploy"; 40 41 42 String ACTION_UPDATE = "update"; 43 44 48 void validateAttributes() throws BuildException; 49 50 54 void deploy() throws BuildException; 55 56 60 void setTask(ServerDeploy task); 61 } 62 | Popular Tags |