You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@continuum.apache.org by ol...@apache.org on 2007/09/15 01:08:14 UTC

svn commit: r575816 - /maven/continuum/trunk/continuum-webapp/src/main/resources/xwork.xml

Author: olamy
Date: Fri Sep 14 16:08:11 2007
New Revision: 575816

URL: http://svn.apache.org/viewvc?rev=575816&view=rev
Log:
add an interceptor which release PlexusActionComponent.
As they are per-lookup they have to be released in order to cleanup the map which stored references to them.

Modified:
    maven/continuum/trunk/continuum-webapp/src/main/resources/xwork.xml

Modified: maven/continuum/trunk/continuum-webapp/src/main/resources/xwork.xml
URL: http://svn.apache.org/viewvc/maven/continuum/trunk/continuum-webapp/src/main/resources/xwork.xml?rev=575816&r1=575815&r2=575816&view=diff
==============================================================================
--- maven/continuum/trunk/continuum-webapp/src/main/resources/xwork.xml (original)
+++ maven/continuum/trunk/continuum-webapp/src/main/resources/xwork.xml Fri Sep 14 16:08:11 2007
@@ -36,7 +36,8 @@
       <interceptor name="redbackAutoLogin" class="redbackAutoLoginInterceptor"/>
       <interceptor name="redbackPolicyEnforcement" class="redbackPolicyEnforcementInterceptor"/>
       <interceptor name="redbackEnvironmentChecker" class="redbackEnvironmentCheckInterceptor"/>
-
+      <interceptor name="plexusReleaseComponentInterceptor" class="plexusReleaseComponentInterceptor"/>
+      
       <interceptor-stack name="configuredContinuumStack">
         <interceptor-ref name="redbackEnvironmentChecker"/>
         <interceptor-ref name="redbackForceAdminUser"/>
@@ -52,6 +53,7 @@
         <interceptor-ref name="workflow">
           <param name="excludeMethods">input,back,cancel,browse,edit</param>
         </interceptor-ref>
+        <interceptor-ref name="plexusReleaseComponentInterceptor"/>
       </interceptor-stack>
 
       <interceptor-stack name="unconfiguredContinuumStack">
@@ -68,6 +70,7 @@
         <interceptor-ref name="workflow">
           <param name="excludeMethods">input,back,cancel,browse,edit</param>
         </interceptor-ref>
+        <interceptor-ref name="plexusReleaseComponentInterceptor"/>
       </interceptor-stack>
     </interceptors>