[jboss-cvs] JBossCache/src-50/org/jboss/cache/pojo ...

Ben Wang bwang at jboss.com
Thu Jul 13 12:53:13 EDT 2006


  User: bwang   
  Date: 06/07/13 12:53:13

  Modified:    src-50/org/jboss/cache/pojo   PojoTreeCache.java
  Added:       src-50/org/jboss/cache/pojo   InternalConstant.java
  Log:
  Minor stuffs
  
  Revision  Changes    Path
  1.9       +0 -2      JBossCache/src-50/org/jboss/cache/pojo/PojoTreeCache.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: PojoTreeCache.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/src-50/org/jboss/cache/pojo/PojoTreeCache.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -b -r1.8 -r1.9
  --- PojoTreeCache.java	13 Jul 2006 15:56:15 -0000	1.8
  +++ PojoTreeCache.java	13 Jul 2006 16:53:13 -0000	1.9
  @@ -15,14 +15,12 @@
   import org.jboss.cache.marshall.RegionNameConflictException;
   import org.jboss.cache.pojo.eviction.AopEvictionPolicy;
   import org.jboss.cache.pojo.util.ObjectUtil;
  -import org.jboss.cache.pojo.impl.InternalConstant;
   import org.jgroups.JChannel;
   import org.w3c.dom.Element;
   
   import javax.transaction.Transaction;
   import java.util.Iterator;
   import java.util.Map;
  -import java.util.WeakHashMap;
   
   public class PojoTreeCache extends TreeCache
   {
  
  
  
  1.1      date: 2006/07/13 16:53:13;  author: bwang;  state: Exp;JBossCache/src-50/org/jboss/cache/pojo/InternalConstant.java
  
  Index: InternalConstant.java
  ===================================================================
  /*
   * JBoss, Home of Professional Open Source
   *
   * Distributable under LGPL license.
   * See terms of license at gnu.org.
   */
  
  package org.jboss.cache.pojo;
  
  import org.jboss.cache.Fqn;
  
  /**
   * Internal helper class to handle internal cache sotre, that is, the portion that is not part of
   * user's data.
   *
   * @author Ben Wang
   */
  public class InternalConstant
  {
     public static final String CLASS_INTERNAL = "__jboss:internal:class__";
     public static final String SERIALIZED = "__SERIALIZED__";
     public static final Fqn JBOSS_INTERNAL = new Fqn("__JBossInternal__");
     public static final Fqn JBOSS_INTERNAL_MAP = new Fqn(InternalConstant.JBOSS_INTERNAL, "__RefMap__");
  }
  
  
  



More information about the jboss-cvs-commits mailing list