[jboss-cvs] JBossAS SVN: r79038 - projects/ejb3/trunk/testsuite/src/test/resources/test/ejbthree1023.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Oct 2 12:21:27 EDT 2008


Author: wolfc
Date: 2008-10-02 12:21:27 -0400 (Thu, 02 Oct 2008)
New Revision: 79038

Modified:
   projects/ejb3/trunk/testsuite/src/test/resources/test/ejbthree1023/ejbthree1023-aop.xml
Log:
EJBTHREE-1201: interceptor definition moved to top-level (http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4180022)

Modified: projects/ejb3/trunk/testsuite/src/test/resources/test/ejbthree1023/ejbthree1023-aop.xml
===================================================================
--- projects/ejb3/trunk/testsuite/src/test/resources/test/ejbthree1023/ejbthree1023-aop.xml	2008-10-02 16:08:30 UTC (rev 79037)
+++ projects/ejb3/trunk/testsuite/src/test/resources/test/ejbthree1023/ejbthree1023-aop.xml	2008-10-02 16:21:27 UTC (rev 79038)
@@ -1,8 +1,10 @@
-<aop xmlns="urn:jboss:aop-beans:1.0">
-	<bind pointcut="execution(* org.jboss.ejb3.test.ejbthree1023.AnnotatedLocalBean->woven())">
-		<interceptor class="org.jboss.ejb3.test.ejbthree1023.TestInterceptor"/>
-	</bind>
-	<bind pointcut="execution(* org.jboss.ejb3.test.ejbthree1023.DefaultLocalBean->woven())">
-		<interceptor class="org.jboss.ejb3.test.ejbthree1023.TestInterceptor"/>
-	</bind>
+<aop xmlns="urn:jboss:aop-beans:1.0">
+   <interceptor class="org.jboss.ejb3.test.ejbthree1023.TestInterceptor"/>
+   
+   <bind pointcut="execution(* org.jboss.ejb3.test.ejbthree1023.AnnotatedLocalBean->woven())">
+      <interceptor-ref name="org.jboss.ejb3.test.ejbthree1023.TestInterceptor"/>
+   </bind>
+   <bind pointcut="execution(* org.jboss.ejb3.test.ejbthree1023.DefaultLocalBean->woven())">
+      <interceptor-ref name="org.jboss.ejb3.test.ejbthree1023.TestInterceptor"/>
+   </bind>
 </aop>




More information about the jboss-cvs-commits mailing list