[jboss-cvs] jboss-seam/src/main/org/jboss/seam/core ...

Gavin King gavin.king at jboss.com
Wed Mar 7 00:20:40 EST 2007


  User: gavin   
  Date: 07/03/07 00:20:40

  Modified:    src/main/org/jboss/seam/core  Init.java
  Log:
  hot deployment for JavaBean components
  
  Revision  Changes    Path
  1.41      +25 -1     jboss-seam/src/main/org/jboss/seam/core/Init.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: Init.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/core/Init.java,v
  retrieving revision 1.40
  retrieving revision 1.41
  diff -u -b -r1.40 -r1.41
  --- Init.java	3 Mar 2007 18:22:41 -0000	1.40
  +++ Init.java	7 Mar 2007 05:20:40 -0000	1.41
  @@ -1,10 +1,11 @@
  -//$Id: Init.java,v 1.40 2007/03/03 18:22:41 gavin Exp $
  +//$Id: Init.java,v 1.41 2007/03/07 05:20:40 gavin Exp $
   package org.jboss.seam.core;
   
   
   import static org.jboss.seam.InterceptionType.NEVER;
   import static org.jboss.seam.annotations.Install.BUILT_IN;
   
  +import java.io.File;
   import java.lang.reflect.Method;
   import java.util.ArrayList;
   import java.util.HashMap;
  @@ -64,6 +65,9 @@
      private Map<String, String> validators = new HashMap<String, String>();
      private Map<Class, String> convertersByClass = new HashMap<Class, String>();
      
  +   private long timestamp;
  +   private File[] hotDeployPaths;
  +   
      @Create
      public void create()
      {
  @@ -416,4 +420,24 @@
      {
         return validators;
      }
  +
  +   public File[] getHotDeployPaths()
  +   {
  +      return hotDeployPaths;
  +   }
  +
  +   public void setHotDeployPaths(File[] hotDeployJars)
  +   {
  +      this.hotDeployPaths = hotDeployJars;
  +   }
  +
  +   public long getTimestamp()
  +   {
  +      return timestamp;
  +   }
  +
  +   public void setTimestamp(long timestamp)
  +   {
  +      this.timestamp = timestamp;
  +   }
   }
  
  
  



More information about the jboss-cvs-commits mailing list