[jboss-cvs] JBossAS SVN: r85153 - 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
Tue Mar 3 04:58:57 EST 2009


Author: emuckenhuber
Date: 2009-03-03 04:58:57 -0500 (Tue, 03 Mar 2009)
New Revision: 85153

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

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-03-03 09:54:48 UTC (rev 85152)
+++ projects/integration/trunk/jboss-profileservice-spi/src/main/java/org/jboss/deployers/spi/management/deploy/DeploymentManager.java	2009-03-03 09:58:57 UTC (rev 85153)
@@ -42,21 +42,16 @@
     * for future operations.
     * 
     * @param key - the profile to load
-    * @param allowHotDeployments - Can be used to suspend hot deployment
-    * processing while working against a live server to avoid conflicts.
     * @throws Exception for any error
     */
-   public void loadProfile(ProfileKey key, boolean allowHotDeployments) throws Exception;
+   public void loadProfile(ProfileKey key) throws Exception;
+
    /**
-    * Release a profile. This frees any resources and resets the hot deployment
-    * processing.
+    * Release the previous loaded profile.
     * 
-    * @param key - the profile to load
-    * @param allowHotDeployments - Can be used to suspend hot deployment
-    * processing while working against a live server to avoid conflicts.
     * @throws Exception
     */
-   public void releaseProfile(ProfileKey key, boolean allowHotDeployments) throws Exception;
+   public void releaseProfile() throws Exception;
    
    /**
     * Get a set of profiles supporting deployment actions.




More information about the jboss-cvs-commits mailing list