[jboss-cvs] jboss-seam/src/main/org/jboss/seam/annotations ...
Gavin King
gavin.king at jboss.com
Wed Nov 8 16:30:13 EST 2006
User: gavin
Date: 06/11/08 16:30:13
Modified: src/main/org/jboss/seam/annotations HttpError.java
Redirect.java Render.java
Log:
substitute for @ApplicationException JBSEAM-467
Revision Changes Path
1.5 +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.4
retrieving revision 1.5
diff -u -b -r1.4 -r1.5
--- HttpError.java 23 Oct 2006 18:09:29 -0000 1.4
+++ HttpError.java 8 Nov 2006 21:30:13 -0000 1.5
@@ -43,4 +43,11 @@
* @return true if we should end the conversation
*/
boolean end() default false;
+ /**
+ * Should the transaction be rolled back when this
+ * exception occurs.
+ *
+ * @return true if we should end the conversation
+ */
+ boolean rollback() default false;
}
1.5 +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.4
retrieving revision 1.5
diff -u -b -r1.4 -r1.5
--- Redirect.java 23 Oct 2006 18:09:29 -0000 1.4
+++ Redirect.java 8 Nov 2006 21:30:13 -0000 1.5
@@ -41,4 +41,11 @@
* @return true if we should end the conversation
*/
boolean end() default false;
+ /**
+ * Should the transaction be rolled back when this
+ * exception occurs.
+ *
+ * @return true if we should end the conversation
+ */
+ boolean rollback() default false;
}
1.4 +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.3
retrieving revision 1.4
diff -u -b -r1.3 -r1.4
--- Render.java 23 Oct 2006 18:09:29 -0000 1.3
+++ Render.java 8 Nov 2006 21:30:13 -0000 1.4
@@ -42,4 +42,11 @@
* @return true if we should end the conversation
*/
boolean end() default false;
+ /**
+ * Should the transaction be rolled back when this
+ * exception occurs.
+ *
+ * @return true if we should end the conversation
+ */
+ boolean rollback() default false;
}
More information about the jboss-cvs-commits
mailing list