1 17 package org.objectweb.jonas.ant; 18 19 import org.apache.tools.ant.BuildException; 20 21 26 public interface HotDeploymentTool { 27 28 31 String ACTION_DELETE = "delete"; 32 33 36 String ACTION_DEPLOY = "deploy"; 37 38 41 String ACTION_LIST = "list"; 42 43 46 String ACTION_UNDEPLOY = "undeploy"; 47 48 51 String ACTION_UPDATE = "update"; 52 53 58 void validateAttributes() throws BuildException; 59 60 65 void deploy() throws BuildException; 66 67 71 void setTask(ServerDeploy task); 72 } | Popular Tags |