[jboss-cvs] JBossAS SVN: r59878 - trunk/j2ee/src/main/javax/enterprise/deploy/spi.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Sat Jan 20 10:15:51 EST 2007


Author: scott.stark at jboss.org
Date: 2007-01-20 10:15:50 -0500 (Sat, 20 Jan 2007)
New Revision: 59878

Modified:
   trunk/j2ee/src/main/javax/enterprise/deploy/spi/DeploymentManager.java
Log:
Update DeploymentManager for ee 5

Modified: trunk/j2ee/src/main/javax/enterprise/deploy/spi/DeploymentManager.java
===================================================================
--- trunk/j2ee/src/main/javax/enterprise/deploy/spi/DeploymentManager.java	2007-01-20 15:15:30 UTC (rev 59877)
+++ trunk/j2ee/src/main/javax/enterprise/deploy/spi/DeploymentManager.java	2007-01-20 15:15:50 UTC (rev 59878)
@@ -120,6 +120,20 @@
    ProgressObject distribute(Target[] targets, InputStream moduleArchive, InputStream deploymentPlan) throws IllegalStateException;
 
    /**
+    * The distribute method performs three tasks; it validates the deployment configuration
+    * data, generates all container specific classes and interfaces, and moves the fully
+    * baked archive to the designated deployment targets.
+    * @param targets        the targets
+    * @param moduleArchive  the module archive
+    * @param deploymentPlan the runtime configuration
+    * @return the progress object
+    * @throws IllegalStateException when the manager is disconnected
+    */
+   public ProgressObject distribute(Target[] targets, ModuleType type,
+         InputStream moduleArchive, InputStream deploymentPlan)
+         throws IllegalStateException;
+
+   /**
     * Start the modules
     *
     * @param moduleIDList the list of modules




More information about the jboss-cvs-commits mailing list