1 17 18 package org.apache.geronimo.deployment.cli; 19 20 import org.apache.geronimo.common.DeploymentException; 21 22 import java.io.PrintWriter ; 23 24 30 public interface DeployCommand { 31 String getCommandGroup(); 32 String getCommandName(); 33 String getHelpArgumentList(); 34 String getHelpText(); 35 boolean isLocalOnly(); 36 void execute(PrintWriter out, ServerConnection connection, String [] args) throws DeploymentException; 37 } 38 | Popular Tags |