[jboss-cvs] system2/src/main/org/jboss/deployers/plugins ...

Scott Stark scott.stark at jboss.com
Wed Jul 12 20:25:39 EDT 2006


  User: starksm 
  Date: 06/07/12 20:25:39

  Modified:    src/main/org/jboss/deployers/plugins  DeploymentImpl.java
  Log:
  Add support for serialization of VDF elements
  
  Revision  Changes    Path
  1.4       +5 -2      system2/src/main/org/jboss/deployers/plugins/DeploymentImpl.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: DeploymentImpl.java
  ===================================================================
  RCS file: /cvsroot/jboss/system2/src/main/org/jboss/deployers/plugins/DeploymentImpl.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -b -r1.3 -r1.4
  --- DeploymentImpl.java	6 Jul 2006 03:28:23 -0000	1.3
  +++ DeploymentImpl.java	13 Jul 2006 00:25:39 -0000	1.4
  @@ -21,6 +21,7 @@
    */
   package org.jboss.deployers.plugins;
   
  +import java.io.Serializable;
   import java.net.URL;
   import java.util.Set;
   
  @@ -29,12 +30,14 @@
   import org.jboss.deployers.spi.management.ManagedObject;
   
   /**
  + * A root deployment container
    * 
    * @author Scott.Stark at jboss.org
    * @version $Revision$
    */
  -public class DeploymentImpl implements Deployment
  +public class DeploymentImpl implements Deployment, Serializable
   {
  +   private static final long serialVersionUID = 1;
      private String name;
      private DeploymentContext rootContext;
   
  
  
  



More information about the jboss-cvs-commits mailing list