[jboss-cvs] JBossCache/src/org/jboss/cache/aop/annotation ...

Manik Surtani msurtani at jboss.com
Fri Jul 21 14:16:42 EDT 2006


  User: msurtani
  Date: 06/07/21 14:16:42

  Modified:    src/org/jboss/cache/aop/annotation     Serializable.java
                        Transient.java
  Removed:     src/org/jboss/cache/aop/annotation    
                        InstanceOfPojoCacheable.java PojoCacheable.java
  Log:
  Reverted
  
  Revision  Changes    Path
  1.6       +4 -11     JBossCache/src/org/jboss/cache/aop/annotation/Serializable.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: Serializable.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/src/org/jboss/cache/aop/annotation/Serializable.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -b -r1.5 -r1.6
  --- Serializable.java	21 Jul 2006 03:03:46 -0000	1.5
  +++ Serializable.java	21 Jul 2006 18:16:42 -0000	1.6
  @@ -7,19 +7,12 @@
   
   package org.jboss.cache.aop.annotation;
   
  -import java.lang.annotation.Retention;
  -import java.lang.annotation.RetentionPolicy;
  -import java.lang.annotation.Target;
  -import java.lang.annotation.ElementType;
  -
   /**
  - * Annoataion that declares a field is Serializable, i.e., use pure serialization for replication.
  + * 1.4 annotation interface
    *
    * @author Ben Wang
  - *         Date: Jan 22, 2006
  - * @version $Id: Serializable.java,v 1.5 2006/07/21 03:03:46 msurtani Exp $
  + *         Date: Apr 13, 2006
  + * @version $Id: Serializable.java,v 1.6 2006/07/21 18:16:42 msurtani Exp $
    */
  - at Retention(RetentionPolicy.RUNTIME)
  - at Target(ElementType.FIELD)
  -public @interface Serializable {
  +public interface Serializable {
   }
  
  
  
  1.6       +4 -11     JBossCache/src/org/jboss/cache/aop/annotation/Transient.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: Transient.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/src/org/jboss/cache/aop/annotation/Transient.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -b -r1.5 -r1.6
  --- Transient.java	21 Jul 2006 03:03:46 -0000	1.5
  +++ Transient.java	21 Jul 2006 18:16:42 -0000	1.6
  @@ -7,19 +7,12 @@
   
   package org.jboss.cache.aop.annotation;
   
  -import java.lang.annotation.Retention;
  -import java.lang.annotation.RetentionPolicy;
  -import java.lang.annotation.Target;
  -import java.lang.annotation.ElementType;
  -
   /**
  - * Annoataion that declares a field is transient (i.e., no-replicatable).
  + * 1.4 annotation interface.
    *
    * @author Ben Wang
  - *         Date: Jan 22, 2006
  - * @version $Id: Transient.java,v 1.5 2006/07/21 03:03:46 msurtani Exp $
  + *         Date: Apr 13, 2006
  + * @version $Id: Transient.java,v 1.6 2006/07/21 18:16:42 msurtani Exp $
    */
  - at Retention(RetentionPolicy.RUNTIME)
  - at Target(ElementType.FIELD)
  -public @interface Transient {
  +public interface Transient {
   }
  
  
  



More information about the jboss-cvs-commits mailing list