[jboss-cvs] JBossAS SVN: r86810 - projects/integration/trunk/jboss-profileservice-spi/src/main/java/org/jboss/deployers/spi/management/deploy.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Sun Apr 5 06:24:39 EDT 2009


Author: emuckenhuber
Date: 2009-04-05 06:24:38 -0400 (Sun, 05 Apr 2009)
New Revision: 86810

Modified:
   projects/integration/trunk/jboss-profileservice-spi/src/main/java/org/jboss/deployers/spi/management/deploy/DeploymentManager.java
Log:
javadoc

Modified: projects/integration/trunk/jboss-profileservice-spi/src/main/java/org/jboss/deployers/spi/management/deploy/DeploymentManager.java
===================================================================
--- projects/integration/trunk/jboss-profileservice-spi/src/main/java/org/jboss/deployers/spi/management/deploy/DeploymentManager.java	2009-04-05 09:44:19 UTC (rev 86809)
+++ projects/integration/trunk/jboss-profileservice-spi/src/main/java/org/jboss/deployers/spi/management/deploy/DeploymentManager.java	2009-04-05 10:24:38 UTC (rev 86810)
@@ -70,7 +70,8 @@
    String[] getRepositoryNames(String[] names) throws Exception;
 
    /**
-    * Add raw deployment content to the profile.
+    * Add raw deployment content to the profile. This will not 
+    * start the deployment itself.
     * 
     * @param name the deployment name
     * @param contentURL - URL for obtaining the deployment archive
@@ -106,7 +107,7 @@
    boolean isRedeploySupported();
    
    /**
-    * Do redeploy.
+    * Redeploy a given deployment.
     * 
     * @param name the deployment to redeploy
     * @return a DeploymentProgress used to run and track the redeploy progress.
@@ -115,7 +116,8 @@
    DeploymentProgress redeploy(String name) throws Exception;
    
    /**
-    * Stop a previously started deployment.
+    * Stop a previously started deployment without removing 
+    * the deployment
     * 
     * @param names the unique names of the deployments
     * @return a DeploymentProgress used to run and track the stop progress.
@@ -124,7 +126,8 @@
    DeploymentProgress stop(String... names) throws Exception;
    
    /**
-    * Remove a previously distributed deployment.
+    * Remove a previously distributed deployment. This will
+    * only remove the deployed contents, without stopping it.
     * 
     * @param names the unique names of the deployments
     * @return a DeploymentProgress used to run and track the remove progress.




More information about the jboss-cvs-commits mailing list