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

Gavin King gavin.king at jboss.com
Tue Oct 10 00:48:21 EDT 2006


  User: gavin   
  Date: 06/10/10 00:48:21

  Modified:    src/main/org/jboss/seam/annotations   Outcome.java
  Added:       src/main/org/jboss/seam/annotations   Synchronized.java
  Log:
  JBSEAM-399 @Synchronized
  
  Revision  Changes    Path
  1.4       +2 -2      jboss-seam/src/main/org/jboss/seam/annotations/Outcome.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: Outcome.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/annotations/Outcome.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -b -r1.3 -r1.4
  --- Outcome.java	23 Aug 2005 20:07:46 -0000	1.3
  +++ Outcome.java	10 Oct 2006 04:48:21 -0000	1.4
  @@ -1,4 +1,4 @@
  -//$Id: Outcome.java,v 1.3 2005/08/23 20:07:46 gavin Exp $
  +//$Id: Outcome.java,v 1.4 2006/10/10 04:48:21 gavin Exp $
   package org.jboss.seam.annotations;
   
   public class Outcome
  @@ -6,7 +6,7 @@
      /**
       * Annotations may not specify a null String. This
       * value lets us specify a null outcome in an
  -    * annotation such as @Invalid
  +    * annotation such as @IfInvalid
       */
      public static final String REDISPLAY = "org.jboss.seam.outcome.null";
   }
  
  
  
  1.1      date: 2006/10/10 04:48:21;  author: gavin;  state: Exp;jboss-seam/src/main/org/jboss/seam/annotations/Synchronized.java
  
  Index: Synchronized.java
  ===================================================================
  package org.jboss.seam.annotations;
  
  import static java.lang.annotation.ElementType.TYPE;
  import static java.lang.annotation.RetentionPolicy.RUNTIME;
  
  import java.lang.annotation.Documented;
  import java.lang.annotation.Retention;
  import java.lang.annotation.Target;
  
  /**
   * Specifies that a stateful component has
   * multiple concurrent clients, and so access 
   * to the component must be synchronized.
   * 
   * @author Gavin King
   *
   */
  @Target(TYPE)
  @Retention(RUNTIME)
  @Documented
  public @interface Synchronized
  {
  
  }
  
  
  



More information about the jboss-cvs-commits mailing list