[seam-commits] Seam SVN: r10533 - branches/community/Seam_2_1/src/main/org/jboss/seam/security.

seam-commits at lists.jboss.org seam-commits at lists.jboss.org
Mon Apr 20 05:15:02 EDT 2009


Author: shane.bryzak at jboss.com
Date: 2009-04-20 05:15:01 -0400 (Mon, 20 Apr 2009)
New Revision: 10533

Modified:
   branches/community/Seam_2_1/src/main/org/jboss/seam/security/SecurityInterceptor.java
Log:
can't put a CLIENT interceptor inside a SERVER interceptor

Modified: branches/community/Seam_2_1/src/main/org/jboss/seam/security/SecurityInterceptor.java
===================================================================
--- branches/community/Seam_2_1/src/main/org/jboss/seam/security/SecurityInterceptor.java	2009-04-20 02:15:35 UTC (rev 10532)
+++ branches/community/Seam_2_1/src/main/org/jboss/seam/security/SecurityInterceptor.java	2009-04-20 09:15:01 UTC (rev 10533)
@@ -17,7 +17,6 @@
 import org.jboss.seam.async.AsynchronousInterceptor;
 import org.jboss.seam.intercept.AbstractInterceptor;
 import org.jboss.seam.intercept.InvocationContext;
-import org.jboss.seam.transaction.RollbackInterceptor;
 import org.jboss.seam.util.Strings;
 
 /**
@@ -26,7 +25,7 @@
  * @author Shane Bryzak
  */
 @Interceptor(type=InterceptorType.CLIENT, 
-         around=AsynchronousInterceptor.class, within = RollbackInterceptor.class)
+         around=AsynchronousInterceptor.class)
 public class SecurityInterceptor extends AbstractInterceptor implements Serializable
 {
    private static final long serialVersionUID = -6567750187000766925L;




More information about the seam-commits mailing list