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

Ben Wang bwang at jboss.com
Wed Aug 16 03:34:12 EDT 2006


  User: bwang   
  Date: 06/08/16 03:34:12

  Added:       src-50/org/jboss/cache/aop/annotation  Tag:
                        Branch_JBossCache_1_4_0 NonTransient.java
  Log:
  JBCACHE-733 NonTransient annotation
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.1.2.1   +25 -0     JBossCache/src-50/org/jboss/cache/aop/annotation/Attic/NonTransient.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: NonTransient.java
  ===================================================================
  RCS file: NonTransient.java
  diff -N NonTransient.java
  --- /dev/null	1 Jan 1970 00:00:00 -0000
  +++ NonTransient.java	16 Aug 2006 07:34:12 -0000	1.1.2.1
  @@ -0,0 +1,25 @@
  +/*
  + * 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: NonTransient.java,v 1.1.2.1 2006/08/16 07:34:12 bwang Exp $
  + */
  + at Retention(RetentionPolicy.RUNTIME)
  + at Target(ElementType.FIELD)
  +public @interface NonTransient {
  +}
  
  
  



More information about the jboss-cvs-commits mailing list