[jboss-cvs] JBossAS SVN: r90099 - projects/ejb3/trunk/core/src/main/resources.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Jun 11 12:01:15 EDT 2009


Author: jaikiran
Date: 2009-06-11 12:01:15 -0400 (Thu, 11 Jun 2009)
New Revision: 90099

Modified:
   projects/ejb3/trunk/core/src/main/resources/ejb3-interceptors-aop.xml
Log:
EJBTHREE-1841 Remove the InterceptorsFactory from the AOP interceptors chain for core.

Modified: projects/ejb3/trunk/core/src/main/resources/ejb3-interceptors-aop.xml
===================================================================
--- projects/ejb3/trunk/core/src/main/resources/ejb3-interceptors-aop.xml	2009-06-11 15:51:27 UTC (rev 90098)
+++ projects/ejb3/trunk/core/src/main/resources/ejb3-interceptors-aop.xml	2009-06-11 16:01:15 UTC (rev 90099)
@@ -75,7 +75,8 @@
      -->
 
    <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"/>
+   <!--  EJBTHREE-1841 No longer needed in core
+   <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"/>
 
    <!-- TODO: this is actually the bootstrap container -->
@@ -99,7 +100,8 @@
          <!-- TODO: we don't need invocation context here -->
          <!-- TODO: we do until we've seperated the post constructs -->
          <advice name="setup" aspect="InvocationContextInterceptor"/>
-         <advice name="invoke" aspect="InterceptorsFactory"/>
+         <!-- EJBTHREE-1841 No longer needed in core   
+         <advice name="invoke" aspect="InterceptorsFactory"/> -->
       </bind>
 
       <!-- Lifecycle Event Callbacks (EJB 3 12.4) -->




More information about the jboss-cvs-commits mailing list