[jboss-cvs] jboss-portal/server/src/main/org/jboss/portal/server/deployment/jboss ...

Chris Laprun chris.laprun at jboss.com
Mon Aug 21 19:07:22 EDT 2006


  User: claprun 
  Date: 06/08/21 19:07:22

  Modified:    server/src/main/org/jboss/portal/server/deployment/jboss 
                        Tag: JBoss_Portal_Branch_2_4 Deployment.java
  Log:
  - Backported recent changes.
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.6.2.1   +26 -21    jboss-portal/server/src/main/org/jboss/portal/server/deployment/jboss/Deployment.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: Deployment.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-portal/server/src/main/org/jboss/portal/server/deployment/jboss/Deployment.java,v
  retrieving revision 1.6
  retrieving revision 1.6.2.1
  diff -u -b -r1.6 -r1.6.2.1
  --- Deployment.java	29 Apr 2006 00:18:25 -0000	1.6
  +++ Deployment.java	21 Aug 2006 23:07:22 -0000	1.6.2.1
  @@ -22,31 +22,32 @@
   package org.jboss.portal.server.deployment.jboss;
   
   import org.jboss.deployment.DeploymentException;
  -import org.jboss.portal.server.deployment.PortalWebApp;
  -import org.jboss.mx.loading.RepositoryClassLoader;
   import org.jboss.logging.Logger;
  +import org.jboss.mx.loading.RepositoryClassLoader;
  +import org.jboss.portal.server.deployment.PortalWebApp;
   
   import javax.management.MBeanServer;
  -import java.net.URL;
  -import java.net.MalformedURLException;
   import java.io.File;
  +import java.net.MalformedURLException;
  +import java.net.URL;
   
   /**
    * @author <a href="mailto:julien at jboss.org">Julien Viet</a>
  - * @version $Revision: 1.6 $
  + * @version $Revision: 1.6.2.1 $
    */
   public class Deployment
   {
  -   /** The logger.*/
  +
  +   /** The logger. */
      protected final Logger log = Logger.getLogger(getClass());
   
      /** The deployment URL. */
      protected final URL url;
   
  -   /** The web app abstraction.*/
  +   /** The web app abstraction. */
      protected final PortalWebApp pwa;
   
  -   /** The JMX server.*/
  +   /** The JMX server. */
      protected final MBeanServer mbeanServer;
   
      /**
  @@ -76,17 +77,23 @@
         this.mbeanServer = mbeanServer;
      }
   
  -   public void create() throws DeploymentException { }
  +   public void create() throws DeploymentException
  +   {
  +   }
   
  -   public void start() throws DeploymentException { }
  +   public void start() throws DeploymentException
  +   {
  +   }
   
  -   public void stop() throws DeploymentException { }
  +   public void stop() throws DeploymentException
  +   {
  +   }
   
  -   public void destroy() throws DeploymentException { }
  +   public void destroy() throws DeploymentException
  +   {
  +   }
   
  -   /**
  -    * Find the URL of the WEB-INF directory in the war file.
  -    */
  +   /** Find the URL of the WEB-INF directory in the war file. */
      public static URL findWEBINFURL(URL warURL) throws DeploymentException
      {
         try
  @@ -108,9 +115,7 @@
         }
      }
   
  -   /**
  -    * Find the repository classloader reltated to the argument classloader.
  -    */
  +   /** Find the repository classloader reltated to the argument classloader. */
      public static RepositoryClassLoader findRepositoryClassLoader(ClassLoader loader) throws DeploymentException
      {
         while (loader != null)
  
  
  



More information about the jboss-cvs-commits mailing list