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

Gavin King gavin.king at jboss.com
Sat Oct 21 21:47:11 EDT 2006


  User: gavin   
  Date: 06/10/21 21:47:11

  Modified:    src/main/org/jboss/seam/annotations    HttpError.java
                        Redirect.java Render.java
  Log:
  better exception handling
  rolled back change to faces-config
  fix bug where destroy() injected closed EM and tried to register in txn
  
  Revision  Changes    Path
  1.3       +2 -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.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- HttpError.java	28 Jul 2006 00:46:30 -0000	1.2
  +++ HttpError.java	22 Oct 2006 01:47:11 -0000	1.3
  @@ -4,6 +4,7 @@
   import static java.lang.annotation.RetentionPolicy.RUNTIME;
   
   import java.lang.annotation.Documented;
  +import java.lang.annotation.Inherited;
   import java.lang.annotation.Retention;
   import java.lang.annotation.Target;
   
  @@ -18,6 +19,7 @@
   @Target(TYPE)
   @Retention(RUNTIME)
   @Documented
  + at Inherited
   public @interface HttpError
   {
      /**
  
  
  
  1.3       +2 -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.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- Redirect.java	28 Jul 2006 00:46:30 -0000	1.2
  +++ Redirect.java	22 Oct 2006 01:47:11 -0000	1.3
  @@ -4,6 +4,7 @@
   import static java.lang.annotation.RetentionPolicy.RUNTIME;
   
   import java.lang.annotation.Documented;
  +import java.lang.annotation.Inherited;
   import java.lang.annotation.Retention;
   import java.lang.annotation.Target;
   
  @@ -17,6 +18,7 @@
   @Target(TYPE)
   @Retention(RUNTIME)
   @Documented
  + at Inherited
   public @interface Redirect
   {
      /**
  
  
  
  1.2       +2 -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.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- Render.java	28 Jul 2006 00:46:30 -0000	1.1
  +++ Render.java	22 Oct 2006 01:47:11 -0000	1.2
  @@ -4,6 +4,7 @@
   import static java.lang.annotation.RetentionPolicy.RUNTIME;
   
   import java.lang.annotation.Documented;
  +import java.lang.annotation.Inherited;
   import java.lang.annotation.Retention;
   import java.lang.annotation.Target;
   
  @@ -18,6 +19,7 @@
   @Target(TYPE)
   @Retention(RUNTIME)
   @Documented
  + at Inherited
   public @interface Render
   {
      /**
  
  
  



More information about the jboss-cvs-commits mailing list