[jboss-cvs] JBossAS SVN: r103743 - projects/ejb3/trunk/testsuite/src/test/resources/test-configs/removedislocal/deploy.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Fri Apr 9 04:22:19 EDT 2010


Author: jaikiran
Date: 2010-04-09 04:22:17 -0400 (Fri, 09 Apr 2010)
New Revision: 103743

Modified:
   projects/ejb3/trunk/testsuite/src/test/resources/test-configs/removedislocal/deploy/ejb3-interceptors-aop.xml
Log:
EJBTHREE-2062 Fixed the removedislocal test for include the new interceptor stack required by EJBContainer

Modified: projects/ejb3/trunk/testsuite/src/test/resources/test-configs/removedislocal/deploy/ejb3-interceptors-aop.xml
===================================================================
--- projects/ejb3/trunk/testsuite/src/test/resources/test-configs/removedislocal/deploy/ejb3-interceptors-aop.xml	2010-04-09 07:53:52 UTC (rev 103742)
+++ projects/ejb3/trunk/testsuite/src/test/resources/test-configs/removedislocal/deploy/ejb3-interceptors-aop.xml	2010-04-09 08:22:17 UTC (rev 103743)
@@ -81,6 +81,7 @@
    <aspect name="InjectInterceptorsFactory" factory="org.jboss.ejb3.interceptors.aop.InjectInterceptorsFactory" scope="PER_JOINPOINT"/>
    <aspect name="InterceptorsFactory" factory="org.jboss.ejb3.interceptors.aop.InterceptorsFactory" scope="PER_INSTANCE"/>
    <aspect name="InvocationContextInterceptor" class="org.jboss.ejb3.interceptors.aop.InvocationContextInterceptor" scope="PER_VM"/>
+	<interceptor name="CurrentInvocationContextInterceptor" class="org.jboss.ejb3.core.context.CurrentInvocationContextInterceptor" scope="PER_VM"/>
 
    <!-- TODO: this is actually the bootstrap container -->
    <domain name="Intercepted Bean">
@@ -136,6 +137,11 @@
          <interceptor-ref name="org.jboss.ejb3.BlockContainerShutdownInterceptor"/>
       </bind>
       
+	  <stack name="InjectionCallbackStack">
+         <interceptor-ref name="org.jboss.aspects.currentinvocation.CurrentInvocationInterceptor"/>
+         <interceptor-ref name="CurrentInvocationContextInterceptor"/>
+      </stack>
+	  
       <stack name="LifecycleCallbackStack">
          <interceptor-ref name="org.jboss.aspects.currentinvocation.CurrentInvocationInterceptor"/>
          <advice name="setup" aspect="InvocationContextInterceptor"/>
@@ -437,4 +443,4 @@
       </bind>
    </domain>
 
-</aop>
\ No newline at end of file
+</aop>




More information about the jboss-cvs-commits mailing list