[jboss-cvs] JBossAS SVN: r90132 - in projects/integration/trunk/jboss-profileservice-spi/src/main/java/org/jboss/deployers/spi/management: deploy and 1 other directory.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Fri Jun 12 05:27:43 EDT 2009


Author: emuckenhuber
Date: 2009-06-12 05:27:43 -0400 (Fri, 12 Jun 2009)
New Revision: 90132

Modified:
   projects/integration/trunk/jboss-profileservice-spi/src/main/java/org/jboss/deployers/spi/management/KnownComponentTypes.java
   projects/integration/trunk/jboss-profileservice-spi/src/main/java/org/jboss/deployers/spi/management/deploy/DeploymentManager.java
Log:
add missing delegating component dispatcher

Modified: projects/integration/trunk/jboss-profileservice-spi/src/main/java/org/jboss/deployers/spi/management/KnownComponentTypes.java
===================================================================
--- projects/integration/trunk/jboss-profileservice-spi/src/main/java/org/jboss/deployers/spi/management/KnownComponentTypes.java	2009-06-12 08:53:23 UTC (rev 90131)
+++ projects/integration/trunk/jboss-profileservice-spi/src/main/java/org/jboss/deployers/spi/management/KnownComponentTypes.java	2009-06-12 09:27:43 UTC (rev 90132)
@@ -84,7 +84,7 @@
    public enum ConnectionFactoryTypes
    {
       /**
-       * @deprecated use TX
+       * @deprecated use {@link #Tx}
        */
       XA("ConnectionFactory", KnownComponentTypes.XA),
       /**
@@ -123,8 +123,9 @@
     */
    public enum JMSDestination
    {
-      Queue("JMSDestination", "Queue"), Topic("JMSDestination", "Topic"),
-      DurableTopic("DataSource", "DurableTopic");
+      Queue("JMSDestination", "Queue"), 
+      Topic("JMSDestination", "Topic"),
+      DurableTopic("JMSDestination", "DurableTopic");
 
       private final String type;
       private final String subtype;

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-06-12 08:53:23 UTC (rev 90131)
+++ projects/integration/trunk/jboss-profileservice-spi/src/main/java/org/jboss/deployers/spi/management/deploy/DeploymentManager.java	2009-06-12 09:27:43 UTC (rev 90132)
@@ -71,8 +71,7 @@
    String[] getRepositoryNames(String[] names) throws Exception;
 
    /**
-    * Add raw deployment content to the profile. This will not 
-    * start the deployment itself.
+    * Add raw deployment content to the profile.
     * 
     * @param name the deployment name
     * @param contentURL - URL for obtaining the deployment archive
@@ -120,7 +119,7 @@
    boolean isRedeploySupported();
    
    /**
-    * Redeploy a given deployment.
+    * Do redeploy.
     * 
     * @param name the deployment to redeploy
     * @return a DeploymentProgress used to run and track the redeploy progress.
@@ -129,8 +128,7 @@
    DeploymentProgress redeploy(String name) throws Exception;
    
    /**
-    * Stop a previously started deployment without removing 
-    * the deployment
+    * Stop a previously started deployment.
     * 
     * @param names the unique names of the deployments
     * @return a DeploymentProgress used to run and track the stop progress.
@@ -139,8 +137,7 @@
    DeploymentProgress stop(String... names) throws Exception;
    
    /**
-    * Remove a previously distributed deployment. This will
-    * only remove the deployed contents, without stopping it.
+    * Remove a previously distributed deployment.
     * 
     * @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