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

Ben Wang bwang at jboss.com
Tue Oct 31 03:01:13 EST 2006


  User: bwang   
  Date: 06/10/31 03:01:13

  Added:       old/src-50/org/jboss/cache/aop/annotation    
                        PojoCacheable.java InstanceOfPojoCacheable.java
                        Serializable.java Transient.java
  Log:
  Deprecated files moved to old dir.
  
  Revision  Changes    Path
  1.1      date: 2006/10/31 08:01:13;  author: bwang;  state: Exp;JBossCache/old/src-50/org/jboss/cache/aop/annotation/PojoCacheable.java
  
  Index: PojoCacheable.java
  ===================================================================
  /*
   * JBoss, Home of Professional Open Source
   *
   * Distributable under LGPL license.
   * See terms of license at gnu.org.
   */
  
  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 wraps the Prepare annotation of JBossAop.
   *
   * @author Ben Wang
   *         Date: Jan 22, 2006
   * @version $Id: PojoCacheable.java,v 1.1 2006/10/31 08:01:13 bwang Exp $
   */
  @Retention(RetentionPolicy.RUNTIME)
  @Target(ElementType.TYPE)
  public @interface PojoCacheable {
  }
  
  
  
  1.1      date: 2006/10/31 08:01:13;  author: bwang;  state: Exp;JBossCache/old/src-50/org/jboss/cache/aop/annotation/InstanceOfPojoCacheable.java
  
  Index: InstanceOfPojoCacheable.java
  ===================================================================
  /*
   * JBoss, Home of Professional Open Source
   *
   * Distributable under LGPL license.
   * See terms of license at gnu.org.
   */
  
  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 wraps the Prepare annotation of JBossAop.
   *
   * @author Ben Wang
   *         Date: Jan 22, 2006
   * @version $Id: InstanceOfPojoCacheable.java,v 1.1 2006/10/31 08:01:13 bwang Exp $
   */
  @Retention(RetentionPolicy.RUNTIME)
  @Target(ElementType.TYPE)
  public @interface InstanceOfPojoCacheable {
  }
  
  
  
  1.1      date: 2006/10/31 08:01:13;  author: bwang;  state: Exp;JBossCache/old/src-50/org/jboss/cache/aop/annotation/Serializable.java
  
  Index: Serializable.java
  ===================================================================
  /*
   * JBoss, Home of Professional Open Source
   *
   * Distributable under LGPL license.
   * See terms of license at gnu.org.
   */
  
  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.
   *
   * @author Ben Wang
   *         Date: Jan 22, 2006
   * @version $Id: Serializable.java,v 1.1 2006/10/31 08:01:13 bwang Exp $
   */
  @Retention(RetentionPolicy.RUNTIME)
  @Target(ElementType.FIELD)
  public @interface Serializable {
  }
  
  
  
  1.1      date: 2006/10/31 08:01:13;  author: bwang;  state: Exp;JBossCache/old/src-50/org/jboss/cache/aop/annotation/Transient.java
  
  Index: Transient.java
  ===================================================================
  /*
   * JBoss, Home of Professional Open Source
   *
   * Distributable under LGPL license.
   * See terms of license at gnu.org.
   */
  
  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).
   *
   * @author Ben Wang
   *         Date: Jan 22, 2006
   * @version $Id: Transient.java,v 1.1 2006/10/31 08:01:13 bwang Exp $
   */
  @Retention(RetentionPolicy.RUNTIME)
  @Target(ElementType.FIELD)
  public @interface Transient {
  }
  
  
  



More information about the jboss-cvs-commits mailing list