[seam-commits] Seam SVN: r10415 - trunk/src/main/org/jboss/seam/security.
seam-commits at lists.jboss.org
seam-commits at lists.jboss.org
Tue Apr 14 17:10:26 EDT 2009
Author: shane.bryzak at jboss.com
Date: 2009-04-14 17:10:26 -0400 (Tue, 14 Apr 2009)
New Revision: 10415
Modified:
trunk/src/main/org/jboss/seam/security/SecurityInterceptor.java
Log:
interceptor invoked within RollbackInterceptor
Modified: trunk/src/main/org/jboss/seam/security/SecurityInterceptor.java
===================================================================
--- trunk/src/main/org/jboss/seam/security/SecurityInterceptor.java 2009-04-14 20:47:12 UTC (rev 10414)
+++ trunk/src/main/org/jboss/seam/security/SecurityInterceptor.java 2009-04-14 21:10:26 UTC (rev 10415)
@@ -17,6 +17,7 @@
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;
/**
@@ -25,7 +26,7 @@
* @author Shane Bryzak
*/
@Interceptor(type=InterceptorType.CLIENT,
- around=AsynchronousInterceptor.class)
+ around=AsynchronousInterceptor.class, within = RollbackInterceptor.class)
public class SecurityInterceptor extends AbstractInterceptor implements Serializable
{
private static final long serialVersionUID = -6567750187000766925L;
More information about the seam-commits
mailing list