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

Gavin King gavin.king at jboss.com
Mon Oct 23 14:09:29 EDT 2006


  User: gavin   
  Date: 06/10/23 14:09:29

  Modified:    src/main/org/jboss/seam/annotations    HttpError.java
                        Redirect.java Render.java
  Log:
  exceptions.xml
  apply ejb3 rollback rules to javabeans
  
  Revision  Changes    Path
  1.4       +7 -0      jboss-seam/src/main/org/jboss/seam/annotations/HttpError.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: HttpError.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/annotations/HttpError.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -b -r1.3 -r1.4
  --- HttpError.java	22 Oct 2006 01:47:11 -0000	1.3
  +++ HttpError.java	23 Oct 2006 18:09:29 -0000	1.4
  @@ -36,4 +36,11 @@
       * @return an error code
       */
      int errorCode() default HttpServletResponse.SC_INTERNAL_SERVER_ERROR;
  +   /**
  +    * Should the current long-running conversation end
  +    * when this exception occurs.
  +    * 
  +    * @return true if we should end the conversation
  +    */
  +   boolean end() default false;
   }
  
  
  
  1.4       +7 -0      jboss-seam/src/main/org/jboss/seam/annotations/Redirect.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: Redirect.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/annotations/Redirect.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -b -r1.3 -r1.4
  --- Redirect.java	22 Oct 2006 01:47:11 -0000	1.3
  +++ Redirect.java	23 Oct 2006 18:09:29 -0000	1.4
  @@ -34,4 +34,11 @@
       * @return a JSF view id
       */
      String viewId();
  +   /**
  +    * Should the current long-running conversation end
  +    * when this exception occurs.
  +    * 
  +    * @return true if we should end the conversation
  +    */
  +   boolean end() default false;
   }
  
  
  
  1.3       +7 -0      jboss-seam/src/main/org/jboss/seam/annotations/Render.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: Render.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/annotations/Render.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- Render.java	22 Oct 2006 01:47:11 -0000	1.2
  +++ Render.java	23 Oct 2006 18:09:29 -0000	1.3
  @@ -35,4 +35,11 @@
       * @return a JSF view id
       */
      String viewId() default "";
  +   /**
  +    * Should the current long-running conversation end
  +    * when this exception occurs.
  +    * 
  +    * @return true if we should end the conversation
  +    */
  +   boolean end() default false;
   }
  
  
  



More information about the jboss-cvs-commits mailing list