http://git-wip-us.apache.org/repos/asf/struts-site/blob/b16cc4ef/content/docs/interceptors.html
----------------------------------------------------------------------
diff --git a/content/docs/interceptors.html b/content/docs/interceptors.html
index 0118889..d90cd72 100644
--- a/content/docs/interceptors.html
+++ b/content/docs/interceptors.html
@@ -34,20 +34,6 @@ under the License.
             color:                 #666;
         }
     </style>
-    <link href='https://struts.apache.org/highlighter/style/shCoreStruts.css' 
rel='stylesheet' type='text/css' />
-    <link href='https://struts.apache.org/highlighter/style/shThemeStruts.css' 
rel='stylesheet' type='text/css' />
-    <script src='https://struts.apache.org/highlighter/js/shCore.js' 
type='text/javascript'></script>
-    <script src='https://struts.apache.org/highlighter/js/shBrushPlain.js' 
type='text/javascript'></script>
-    <script src='https://struts.apache.org/highlighter/js/shBrushXml.js' 
type='text/javascript'></script>
-    <script src='https://struts.apache.org/highlighter/js/shBrushJava.js' 
type='text/javascript'></script>
-    <script src='https://struts.apache.org/highlighter/js/shBrushJScript.js' 
type='text/javascript'></script>
-    <script src='https://struts.apache.org/highlighter/js/shBrushGroovy.js' 
type='text/javascript'></script>
-    <script src='https://struts.apache.org/highlighter/js/shBrushBash.js' 
type='text/javascript'></script>
-    <script src='https://struts.apache.org/highlighter/js/shBrushCss.js' 
type='text/javascript'></script>
-    <script type="text/javascript">
-        SyntaxHighlighter.defaults['toolbar'] = false;
-        SyntaxHighlighter.all();
-    </script>
     <script type="text/javascript" language="javascript">
         var hide = null;
         var show = null;
@@ -139,19 +125,7 @@ under the License.
 
     <div class="pagecontent">
         <div class="wiki-content">
-            <div id="ConfluenceContent"><div 
class="confluence-information-macro confluence-information-macro-tip"><span 
class="aui-icon aui-icon-small aui-iconfont-approve 
confluence-information-macro-icon"></span><div 
class="confluence-information-macro-body"><p>The default Interceptor stack is 
designed to serve the needs of most applications. Most applications will 
<strong>not</strong> need to add Interceptors or change the Interceptor 
stack.</p></div></div><p>Many Actions share common concerns. Some Actions need 
input validated. Other Actions may need a file upload to be pre-processed. 
Another Action might need protection from a double submit. Many Actions need 
drop-down lists and other controls pre-populated before the page 
displays.</p><p>The framework makes it easy to share solutions to these 
concerns using an "Interceptor" strategy. When you request a resource that maps 
to an "action", the framework invokes the Action object. But, before the Action 
is executed, the invocatio
 n can be intercepted by another object. After the Action executes, the 
invocation could be intercepted again. Unsurprisingly, we call these objects 
"Interceptors."</p><p><style type="text/css">/*<![CDATA[*/
-div.rbtoc1499928204372 {padding: 0px;}
-div.rbtoc1499928204372 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1499928204372 li {margin-left: 0px;padding-left: 0px;}
-
-/*]]>*/</style></p><div class="toc-macro rbtoc1499928204372">
-<ul class="toc-indentation"><li><a shape="rect" 
href="#Interceptors-UnderstandingInterceptors">Understanding 
Interceptors</a></li><li><a shape="rect" 
href="#Interceptors-ConfiguringInterceptors">Configuring 
Interceptors</a></li><li><a shape="rect" 
href="#Interceptors-StackingInterceptors">Stacking Interceptors</a>
-<ul class="toc-indentation"><li><a shape="rect" 
href="#Interceptors-TheDefaultConfiguration">The Default 
Configuration</a></li></ul>
-</li><li><a shape="rect" href="#Interceptors-FrameworkInterceptors">Framework 
Interceptors</a>
-<ul class="toc-indentation"><li><a shape="rect" 
href="#Interceptors-MethodFiltering">Method Filtering</a></li><li><a 
shape="rect" href="#Interceptors-InterceptorParameterOverriding">Interceptor 
Parameter Overriding</a></li><li><a shape="rect" 
href="#Interceptors-InterceptorParameterOverridingInheritance">Interceptor 
Parameter Overriding Inheritance</a></li><li><a shape="rect" 
href="#Interceptors-Lazyparameters">Lazy parameters</a></li><li><a shape="rect" 
href="#Interceptors-OrderofInterceptorExecution">Order of Interceptor 
Execution</a></li></ul>
-</li><li><a shape="rect" href="#Interceptors-FAQ">FAQ</a></li><li><a 
shape="rect" href="#Interceptors-Next:">Next: Writing Interceptors</a></li></ul>
-</div><h2 id="Interceptors-UnderstandingInterceptors">Understanding 
Interceptors</h2><p>Interceptors can execute code before and after an Action is 
invoked. Most of the framework's core functionality is implemented as 
Interceptors. Features like double-submit guards, type conversion, object 
population, validation, file upload, page preparation, and more, are all 
implemented with the help of Interceptors. Each and every Interceptor is 
pluggable, so you can decide exactly which features an Action needs to 
support.</p><p>Interceptors can be configured on a per-action basis. Your own 
custom Interceptors can be mixed-and-matched with the Interceptors bundled with 
the framework. Interceptors "set the stage" for the Action classes, doing much 
of the "heavy lifting" before the Action executes.</p><div 
class="table-wrap"><table class="confluenceTable"><tbody><tr><th colspan="1" 
rowspan="1" class="confluenceTh"><p>Action Lifecyle</p></th></tr><tr><td 
colspan="1" rowspan="1" class="confluenceT
 d"><p><span class="confluence-embedded-file-wrapper"><img 
class="confluence-embedded-image" 
src="interceptors.data/overview.png"></span></p></td></tr></tbody></table></div><p>In
 some cases, an Interceptor might keep an Action from firing, because of a 
double-submit or because validation failed. Interceptors can also change the 
state of an Action before it executes.</p><p>The Interceptors are defined in a 
stack that specifies the execution order. In some cases, the order of the 
Interceptors on the stack can be very important.</p><h2 
id="Interceptors-ConfiguringInterceptors">Configuring Interceptors</h2><div 
class="code panel pdl" style="border-width: 1px;"><div class="codeHeader 
panelHeader pdl" style="border-bottom-width: 1px;"><b>struts.xml</b></div><div 
class="codeContent panelContent pdl">
-<pre class="brush: xml; gutter: false; theme: Default" 
style="font-size:12px;">&lt;package name="default" extends="struts-default"&gt;
+            <div id="ConfluenceContent"><rich-text-body><p>The default 
Interceptor stack is designed to serve the needs of most applications. Most 
applications will <strong>not</strong> need to add Interceptors or change the 
Interceptor stack.</p></rich-text-body><p>Many Actions share common concerns. 
Some Actions need input validated. Other Actions may need a file upload to be 
pre-processed. Another Action might need protection from a double submit. Many 
Actions need drop-down lists and other controls pre-populated before the page 
displays.</p><p>The framework makes it easy to share solutions to these 
concerns using an "Interceptor" strategy. When you request a resource that maps 
to an "action", the framework invokes the Action object. But, before the Action 
is executed, the invocation can be intercepted by another object. After the 
Action executes, the invocation could be intercepted again. Unsurprisingly, we 
call these objects "Interceptors."</p><p><parameter ac:name="minLevel">2
 </parameter></p><h2 id="Interceptors-UnderstandingInterceptors">Understanding 
Interceptors</h2><p>Interceptors can execute code before and after an Action is 
invoked. Most of the framework's core functionality is implemented as 
Interceptors. Features like double-submit guards, type conversion, object 
population, validation, file upload, page preparation, and more, are all 
implemented with the help of Interceptors. Each and every Interceptor is 
pluggable, so you can decide exactly which features an Action needs to 
support.</p><p>Interceptors can be configured on a per-action basis. Your own 
custom Interceptors can be mixed-and-matched with the Interceptors bundled with 
the framework. Interceptors "set the stage" for the Action classes, doing much 
of the "heavy lifting" before the Action executes.</p><div 
class="table-wrap"><table class="confluenceTable"><tbody><tr><th colspan="1" 
rowspan="1" class="confluenceTh"><p>Action Lifecyle</p></th></tr><tr><td 
colspan="1" rowspan="1" class="c
 onfluenceTd"><p><span class="confluence-embedded-file-wrapper"><img 
class="confluence-embedded-image" 
src="interceptors.data/overview.png"></span></p></td></tr></tbody></table></div><p>In
 some cases, an Interceptor might keep an Action from firing, because of a 
double-submit or because validation failed. Interceptors can also change the 
state of an Action before it executes.</p><p>The Interceptors are defined in a 
stack that specifies the execution order. In some cases, the order of the 
Interceptors on the stack can be very important.</p><h2 
id="Interceptors-ConfiguringInterceptors">Configuring 
Interceptors</h2><parameter ac:name="">xml</parameter><parameter 
ac:name="title">struts.xml</parameter><plain-text-body>&lt;package 
name="default" extends="struts-default"&gt;
    &lt;interceptors&gt;
        &lt;interceptor name="timer" class=".."/&gt;
        &lt;interceptor name="logger" class=".."/&gt;
@@ -164,9 +138,7 @@ div.rbtoc1499928204372 li {margin-left: 0px;padding-left: 
0px;}
       &lt;result name="success" 
type="redirectAction"&gt;/secure/home&lt;/result&gt;
    &lt;/action&gt;
 &lt;/package&gt;
-</pre>
-</div></div><h2 id="Interceptors-StackingInterceptors">Stacking 
Interceptors</h2><p>With most web applications, we find ourselves wanting to 
apply the same set of Interceptors over and over again. Rather than reiterate 
the same list of Interceptors, we can bundle these Interceptors together using 
an Interceptor Stack.</p><div class="code panel pdl" style="border-width: 
1px;"><div class="codeHeader panelHeader pdl" style="border-bottom-width: 
1px;"><b>struts.xml</b></div><div class="codeContent panelContent pdl">
-<pre class="brush: xml; gutter: false; theme: Default" 
style="font-size:12px;">&lt;package name="default" extends="struts-default"&gt;
+</plain-text-body><h2 id="Interceptors-StackingInterceptors">Stacking 
Interceptors</h2><p>With most web applications, we find ourselves wanting to 
apply the same set of Interceptors over and over again. Rather than reiterate 
the same list of Interceptors, we can bundle these Interceptors together using 
an Interceptor Stack.</p><parameter ac:name="">xml</parameter><parameter 
ac:name="title">struts.xml</parameter><plain-text-body>&lt;package 
name="default" extends="struts-default"&gt;
    &lt;interceptors&gt;
         &lt;interceptor name="timer" class=".."/&gt;
         &lt;interceptor name="logger" class=".."/&gt;
@@ -182,432 +154,7 @@ div.rbtoc1499928204372 li {margin-left: 0px;padding-left: 
0px;}
          &lt;result name="success" 
type="redirectAction"&gt;/secure/home&lt;/result&gt;
    &lt;/action&gt;
 &lt;/package&gt;
-</pre>
-</div></div><p>Looking inside <code>struts-default.xml</code>, we can see how 
it's done.</p><h3 id="Interceptors-TheDefaultConfiguration">The Default 
Configuration</h3><p></p><div class="code panel pdl" style="border-width: 
1px;"><div class="codeContent panelContent pdl">
-<script class="brush: xml; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[
-&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; ?&gt;
-&lt;!--
-/*
- * $Id$
- *
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * &quot;License&quot;); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *  http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * &quot;AS IS&quot; BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
---&gt;
-
-&lt;!--
-    When declaring beans in this file you must either use 
name=&quot;struts&quot; or don&#39;t name the bean at all.
-
-    The name=&quot;struts&quot; must be used when alias was defined in {@link 
org.apache.struts2.config.DefaultBeanSelectionProvider} -
-    it is then the default bean&#39;s name and {@link 
org.apache.struts2.config.DefaultBeanSelectionProvider} links name 
&quot;struts&quot;
-    with &quot;default&quot; (aliasing it)
-
-    If name won&#39;t be defined then the &quot;default&quot; value will be 
used {@link com.opensymphony.xwork2.inject.Container#DEFAULT_NAME}
-    and {@link com.opensymphony.xwork2.inject.Inject}
---&gt;
-&lt;!DOCTYPE struts PUBLIC
-    &quot;-//Apache Software Foundation//DTD Struts Configuration 2.5//EN&quot;
-    &quot;http://struts.apache.org/dtds/struts-2.5.dtd&quot;&gt;
-
-&lt;struts&gt;
-
-    &lt;constant name=&quot;struts.excludedClasses&quot;
-              value=&quot;
-                java.lang.Object,
-                java.lang.Runtime,
-                java.lang.System,
-                java.lang.Class,
-                java.lang.ClassLoader,
-                java.lang.Shutdown,
-                java.lang.ProcessBuilder,
-                ognl.OgnlContext,
-                ognl.ClassResolver,
-                ognl.TypeConverter,
-                ognl.MemberAccess,
-                ognl.DefaultMemberAccess,
-                com.opensymphony.xwork2.ognl.SecurityMemberAccess,
-                com.opensymphony.xwork2.ActionContext&quot; /&gt;
-
-    &lt;!-- this must be valid regex, each &#39;.&#39; in package name must be 
escaped! --&gt;
-    &lt;!-- it&#39;s more flexible but slower than simple string comparison 
--&gt;
-    &lt;!-- constant name=&quot;struts.excludedPackageNamePatterns&quot; 
value=&quot;^java\.lang\..*,^ognl.*,^(?!javax\.servlet\..+)(javax\..+)&quot; / 
--&gt;
-
-    &lt;!-- this is simpler version of the above used with string comparison 
--&gt;
-    &lt;constant name=&quot;struts.excludedPackageNames&quot;
-              value=&quot;
-                java.lang.,
-                ognl.,
-                javax,
-                freemarker.core.,
-                freemarker.template.,
-                freemarker.ext.rhino.,
-                freemarker.ext.beans.,
-                sun.reflect.,
-                javassist.&quot; /&gt;
-
-    &lt;bean class=&quot;com.opensymphony.xwork2.ObjectFactory&quot; 
name=&quot;struts&quot;/&gt;
-    &lt;bean type=&quot;com.opensymphony.xwork2.factory.ResultFactory&quot; 
name=&quot;struts&quot; 
class=&quot;org.apache.struts2.factory.StrutsResultFactory&quot; /&gt;
-    &lt;bean type=&quot;com.opensymphony.xwork2.factory.ActionFactory&quot; 
name=&quot;struts&quot; 
class=&quot;com.opensymphony.xwork2.factory.DefaultActionFactory&quot; /&gt;
-    &lt;bean type=&quot;com.opensymphony.xwork2.factory.ConverterFactory&quot; 
name=&quot;struts&quot; 
class=&quot;com.opensymphony.xwork2.factory.DefaultConverterFactory&quot; /&gt;
-    &lt;bean 
type=&quot;com.opensymphony.xwork2.factory.InterceptorFactory&quot; 
name=&quot;struts&quot; 
class=&quot;com.opensymphony.xwork2.factory.DefaultInterceptorFactory&quot; 
/&gt;
-    &lt;bean type=&quot;com.opensymphony.xwork2.factory.ValidatorFactory&quot; 
name=&quot;struts&quot; 
class=&quot;com.opensymphony.xwork2.factory.DefaultValidatorFactory&quot; /&gt;
-    &lt;bean 
type=&quot;com.opensymphony.xwork2.factory.UnknownHandlerFactory&quot; 
name=&quot;struts&quot; 
class=&quot;com.opensymphony.xwork2.factory.DefaultUnknownHandlerFactory&quot; 
/&gt;
-
-    &lt;bean type=&quot;com.opensymphony.xwork2.FileManager&quot; 
class=&quot;com.opensymphony.xwork2.util.fs.DefaultFileManager&quot; 
name=&quot;system&quot; scope=&quot;singleton&quot;/&gt;
-    &lt;bean type=&quot;com.opensymphony.xwork2.FileManagerFactory&quot; 
class=&quot;com.opensymphony.xwork2.util.fs.DefaultFileManagerFactory&quot; 
name=&quot;struts&quot; scope=&quot;singleton&quot;/&gt;
-
-    &lt;bean type=&quot;com.opensymphony.xwork2.ActionProxyFactory&quot; 
name=&quot;struts&quot; 
class=&quot;org.apache.struts2.factory.StrutsActionProxyFactory&quot;/&gt;
-    &lt;bean type=&quot;com.opensymphony.xwork2.ActionProxyFactory&quot; 
name=&quot;prefix&quot; 
class=&quot;org.apache.struts2.factory.PrefixBasedActionProxyFactory&quot;/&gt;
-
-    &lt;bean 
type=&quot;com.opensymphony.xwork2.conversion.ObjectTypeDeterminer&quot; 
name=&quot;struts&quot; 
class=&quot;com.opensymphony.xwork2.conversion.impl.DefaultObjectTypeDeterminer&quot;/&gt;
-
-    &lt;bean type=&quot;com.opensymphony.xwork2.util.PatternMatcher&quot; 
name=&quot;struts&quot; 
class=&quot;com.opensymphony.xwork2.util.WildcardHelper&quot; /&gt;
-    &lt;bean type=&quot;com.opensymphony.xwork2.util.PatternMatcher&quot; 
name=&quot;namedVariable&quot; 
class=&quot;com.opensymphony.xwork2.util.NamedVariablePatternMatcher&quot;/&gt;
-    &lt;bean type=&quot;com.opensymphony.xwork2.util.PatternMatcher&quot; 
name=&quot;regex&quot; 
class=&quot;org.apache.struts2.util.RegexPatternMatcher&quot;/&gt;
-
-    &lt;bean type=&quot;org.apache.struts2.util.ContentTypeMatcher&quot; 
name=&quot;struts&quot; 
class=&quot;org.apache.struts2.util.DefaultContentTypeMatcher&quot;/&gt;
-
-    &lt;bean 
type=&quot;org.apache.struts2.dispatcher.mapper.ActionMapper&quot; 
name=&quot;struts&quot; 
class=&quot;org.apache.struts2.dispatcher.mapper.DefaultActionMapper&quot; /&gt;
-    &lt;bean 
type=&quot;org.apache.struts2.dispatcher.mapper.ActionMapper&quot; 
name=&quot;composite&quot; 
class=&quot;org.apache.struts2.dispatcher.mapper.CompositeActionMapper&quot; 
/&gt;
-    &lt;bean 
type=&quot;org.apache.struts2.dispatcher.mapper.ActionMapper&quot; 
name=&quot;restful&quot; 
class=&quot;org.apache.struts2.dispatcher.mapper.RestfulActionMapper&quot; /&gt;
-    &lt;bean 
type=&quot;org.apache.struts2.dispatcher.mapper.ActionMapper&quot; 
name=&quot;restful2&quot; 
class=&quot;org.apache.struts2.dispatcher.mapper.Restful2ActionMapper&quot; 
/&gt;
-
-    &lt;bean 
type=&quot;org.apache.struts2.dispatcher.multipart.MultiPartRequest&quot; 
name=&quot;jakarta&quot; 
class=&quot;org.apache.struts2.dispatcher.multipart.JakartaMultiPartRequest&quot;
 scope=&quot;prototype&quot;/&gt;
-    &lt;bean 
type=&quot;org.apache.struts2.dispatcher.multipart.MultiPartRequest&quot; 
name=&quot;jakarta-stream&quot; 
class=&quot;org.apache.struts2.dispatcher.multipart.JakartaStreamMultiPartRequest&quot;
 scope=&quot;prototype&quot;/&gt;
-
-    &lt;bean 
type=&quot;org.apache.struts2.views.TagLibraryDirectiveProvider&quot; 
name=&quot;s&quot; class=&quot;org.apache.struts2.views.DefaultTagLibrary&quot; 
/&gt;
-    &lt;bean type=&quot;org.apache.struts2.views.TagLibraryModelProvider&quot; 
name=&quot;s&quot; class=&quot;org.apache.struts2.views.DefaultTagLibrary&quot; 
/&gt;
-
-    &lt;bean 
class=&quot;org.apache.struts2.views.freemarker.FreemarkerThemeTemplateLoader&quot;
 /&gt;
-    &lt;bean 
class=&quot;org.apache.struts2.views.freemarker.FreemarkerManager&quot; 
name=&quot;struts&quot; /&gt;
-    &lt;bean 
class=&quot;org.apache.struts2.views.velocity.VelocityManager&quot; 
name=&quot;struts&quot; optional=&quot;true&quot; /&gt;
-
-    &lt;bean 
class=&quot;org.apache.struts2.components.template.TemplateEngineManager&quot; 
/&gt;
-    &lt;bean 
type=&quot;org.apache.struts2.components.template.TemplateEngine&quot; 
name=&quot;ftl&quot; 
class=&quot;org.apache.struts2.components.template.FreemarkerTemplateEngine&quot;
 /&gt;
-    &lt;bean 
type=&quot;org.apache.struts2.components.template.TemplateEngine&quot; 
name=&quot;vm&quot; 
class=&quot;org.apache.struts2.components.template.VelocityTemplateEngine&quot; 
/&gt;
-    &lt;bean 
type=&quot;org.apache.struts2.components.template.TemplateEngine&quot; 
name=&quot;jsp&quot; 
class=&quot;org.apache.struts2.components.template.JspTemplateEngine&quot; /&gt;
-
-    &lt;bean 
type=&quot;com.opensymphony.xwork2.conversion.impl.XWorkConverter&quot; 
name=&quot;struts&quot; 
class=&quot;com.opensymphony.xwork2.conversion.impl.XWorkConverter&quot; /&gt;
-
-    &lt;bean 
type=&quot;com.opensymphony.xwork2.conversion.ConversionPropertiesProcessor&quot;
 name=&quot;struts&quot; 
class=&quot;com.opensymphony.xwork2.conversion.impl.DefaultConversionPropertiesProcessor&quot;
 /&gt;
-    &lt;bean 
type=&quot;com.opensymphony.xwork2.conversion.ConversionFileProcessor&quot; 
name=&quot;struts&quot; 
class=&quot;com.opensymphony.xwork2.conversion.impl.DefaultConversionFileProcessor&quot;
 /&gt;
-    &lt;bean 
type=&quot;com.opensymphony.xwork2.conversion.ConversionAnnotationProcessor&quot;
 name=&quot;struts&quot; 
class=&quot;com.opensymphony.xwork2.conversion.impl.DefaultConversionAnnotationProcessor&quot;
 /&gt;
-    &lt;bean 
type=&quot;com.opensymphony.xwork2.conversion.TypeConverterCreator&quot; 
name=&quot;struts&quot; 
class=&quot;com.opensymphony.xwork2.conversion.impl.DefaultTypeConverterCreator&quot;
 /&gt;
-    &lt;bean 
type=&quot;com.opensymphony.xwork2.conversion.TypeConverterHolder&quot; 
name=&quot;struts&quot; 
class=&quot;com.opensymphony.xwork2.conversion.impl.DefaultTypeConverterHolder&quot;
 /&gt;
-
-    &lt;bean 
class=&quot;com.opensymphony.xwork2.conversion.impl.XWorkBasicConverter&quot; 
/&gt;
-
-    &lt;bean 
type=&quot;com.opensymphony.xwork2.conversion.impl.CollectionConverter&quot; 
name=&quot;struts&quot; 
class=&quot;com.opensymphony.xwork2.conversion.impl.CollectionConverter&quot; 
scope=&quot;singleton&quot;/&gt;
-    &lt;bean 
type=&quot;com.opensymphony.xwork2.conversion.impl.ArrayConverter&quot; 
name=&quot;struts&quot; 
class=&quot;com.opensymphony.xwork2.conversion.impl.ArrayConverter&quot; 
scope=&quot;singleton&quot;/&gt;
-    &lt;bean 
type=&quot;com.opensymphony.xwork2.conversion.impl.DateConverter&quot; 
name=&quot;struts&quot; 
class=&quot;com.opensymphony.xwork2.conversion.impl.DateConverter&quot; 
scope=&quot;singleton&quot;/&gt;
-    &lt;bean 
type=&quot;com.opensymphony.xwork2.conversion.impl.NumberConverter&quot; 
name=&quot;struts&quot; 
class=&quot;com.opensymphony.xwork2.conversion.impl.NumberConverter&quot; 
scope=&quot;singleton&quot;/&gt;
-    &lt;bean 
type=&quot;com.opensymphony.xwork2.conversion.impl.StringConverter&quot; 
name=&quot;struts&quot; 
class=&quot;com.opensymphony.xwork2.conversion.impl.StringConverter&quot; 
scope=&quot;singleton&quot;/&gt;
-
-    &lt;bean type=&quot;com.opensymphony.xwork2.LocalizedTextProvider&quot; 
name=&quot;global-only&quot; 
class=&quot;com.opensymphony.xwork2.util.GlobalLocalizedTextProvider&quot; 
scope=&quot;singleton&quot; /&gt;
-    &lt;bean type=&quot;com.opensymphony.xwork2.LocalizedTextProvider&quot; 
name=&quot;struts&quot; 
class=&quot;com.opensymphony.xwork2.util.StrutsLocalizedTextProvider&quot; 
scope=&quot;singleton&quot; /&gt;
-
-    &lt;bean type=&quot;com.opensymphony.xwork2.TextProvider&quot; 
name=&quot;system&quot; 
class=&quot;com.opensymphony.xwork2.DefaultTextProvider&quot; 
scope=&quot;singleton&quot; /&gt;
-    &lt;bean type=&quot;com.opensymphony.xwork2.TextProviderFactory&quot; 
name=&quot;struts&quot; 
class=&quot;com.opensymphony.xwork2.StrutsTextProviderFactory&quot; 
scope=&quot;singleton&quot; /&gt;
-    &lt;bean type=&quot;com.opensymphony.xwork2.LocaleProviderFactory&quot; 
name=&quot;struts&quot; 
class=&quot;com.opensymphony.xwork2.DefaultLocaleProviderFactory&quot; 
scope=&quot;singleton&quot; /&gt;
-
-    &lt;bean type=&quot;org.apache.struts2.components.UrlRenderer&quot; 
name=&quot;struts&quot; 
class=&quot;org.apache.struts2.components.ServletUrlRenderer&quot;/&gt;
-    &lt;bean type=&quot;org.apache.struts2.views.util.UrlHelper&quot; 
name=&quot;struts&quot; 
class=&quot;org.apache.struts2.views.util.DefaultUrlHelper&quot;/&gt;
-
-    &lt;bean type=&quot;com.opensymphony.xwork2.util.ValueStackFactory&quot; 
name=&quot;struts&quot; 
class=&quot;com.opensymphony.xwork2.ognl.OgnlValueStackFactory&quot; /&gt;
-    &lt;bean 
type=&quot;com.opensymphony.xwork2.util.reflection.ReflectionProvider&quot; 
name=&quot;struts&quot; 
class=&quot;com.opensymphony.xwork2.ognl.OgnlReflectionProvider&quot; /&gt;
-    &lt;bean 
type=&quot;com.opensymphony.xwork2.util.reflection.ReflectionContextFactory&quot;
 name=&quot;struts&quot; 
class=&quot;com.opensymphony.xwork2.ognl.OgnlReflectionContextFactory&quot; 
/&gt;
-
-    &lt;bean type=&quot;com.opensymphony.xwork2.conversion.NullHandler&quot; 
name=&quot;java.lang.Object&quot; 
class=&quot;com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler&quot;
 /&gt;
-
-    &lt;bean 
type=&quot;com.opensymphony.xwork2.validator.ActionValidatorManager&quot; 
name=&quot;struts&quot; 
class=&quot;com.opensymphony.xwork2.validator.AnnotationActionValidatorManager&quot;
 /&gt;
-    &lt;bean 
type=&quot;com.opensymphony.xwork2.validator.ActionValidatorManager&quot; 
name=&quot;no-annotations&quot; 
class=&quot;com.opensymphony.xwork2.validator.DefaultActionValidatorManager&quot;
 /&gt;
-
-    &lt;bean 
type=&quot;com.opensymphony.xwork2.validator.ValidatorFactory&quot; 
class=&quot;com.opensymphony.xwork2.validator.DefaultValidatorFactory&quot;/&gt;
-    &lt;bean 
type=&quot;com.opensymphony.xwork2.validator.ValidatorFileParser&quot; 
class=&quot;com.opensymphony.xwork2.validator.DefaultValidatorFileParser&quot; 
/&gt;
-
-    &lt;bean class=&quot;com.opensymphony.xwork2.ognl.OgnlUtil&quot; /&gt;
-
-    &lt;bean type=&quot;com.opensymphony.xwork2.util.TextParser&quot; 
name=&quot;struts&quot; 
class=&quot;com.opensymphony.xwork2.util.OgnlTextParser&quot; 
scope=&quot;singleton&quot;/&gt;
-
-    &lt;bean type=&quot;ognl.PropertyAccessor&quot; 
name=&quot;com.opensymphony.xwork2.util.CompoundRoot&quot; 
class=&quot;com.opensymphony.xwork2.ognl.accessor.CompoundRootAccessor&quot; 
/&gt;
-    &lt;bean type=&quot;ognl.PropertyAccessor&quot; 
name=&quot;java.lang.Object&quot; 
class=&quot;com.opensymphony.xwork2.ognl.accessor.ObjectAccessor&quot; /&gt;
-    &lt;bean type=&quot;ognl.PropertyAccessor&quot; 
name=&quot;java.util.Iterator&quot; 
class=&quot;com.opensymphony.xwork2.ognl.accessor.XWorkIteratorPropertyAccessor&quot;
 /&gt;
-    &lt;bean type=&quot;ognl.PropertyAccessor&quot; 
name=&quot;java.util.Enumeration&quot; 
class=&quot;com.opensymphony.xwork2.ognl.accessor.XWorkEnumerationAccessor&quot;
 /&gt;
-    &lt;bean type=&quot;ognl.PropertyAccessor&quot; 
name=&quot;java.util.List&quot; 
class=&quot;com.opensymphony.xwork2.ognl.accessor.XWorkListPropertyAccessor&quot;
 /&gt;
-    &lt;bean type=&quot;ognl.PropertyAccessor&quot; 
name=&quot;java.util.Set&quot; 
class=&quot;com.opensymphony.xwork2.ognl.accessor.XWorkCollectionPropertyAccessor&quot;
 /&gt;
-    &lt;bean type=&quot;ognl.PropertyAccessor&quot; 
name=&quot;java.util.Map&quot; 
class=&quot;com.opensymphony.xwork2.ognl.accessor.XWorkMapPropertyAccessor&quot;
 /&gt;
-    &lt;bean type=&quot;ognl.PropertyAccessor&quot; 
name=&quot;java.util.Collection&quot; 
class=&quot;com.opensymphony.xwork2.ognl.accessor.XWorkCollectionPropertyAccessor&quot;
 /&gt;
-    &lt;bean type=&quot;ognl.PropertyAccessor&quot; 
name=&quot;com.opensymphony.xwork2.ognl.ObjectProxy&quot; 
class=&quot;com.opensymphony.xwork2.ognl.accessor.ObjectProxyPropertyAccessor&quot;
 /&gt;
-    &lt;bean type=&quot;ognl.PropertyAccessor&quot; 
name=&quot;org.apache.struts2.dispatcher.HttpParameters&quot; 
class=&quot;com.opensymphony.xwork2.ognl.accessor.HttpParametersPropertyAccessor&quot;
 /&gt;
-    &lt;bean type=&quot;ognl.PropertyAccessor&quot; 
name=&quot;org.apache.struts2.dispatcher.Parameter&quot; 
class=&quot;com.opensymphony.xwork2.ognl.accessor.ParameterPropertyAccessor&quot;
 /&gt;
-
-    &lt;bean type=&quot;ognl.MethodAccessor&quot; 
name=&quot;java.lang.Object&quot; 
class=&quot;com.opensymphony.xwork2.ognl.accessor.XWorkMethodAccessor&quot; 
/&gt;
-    &lt;bean type=&quot;ognl.MethodAccessor&quot; 
name=&quot;com.opensymphony.xwork2.util.CompoundRoot&quot; 
class=&quot;com.opensymphony.xwork2.ognl.accessor.CompoundRootAccessor&quot; 
/&gt;
-
-    &lt;bean class=&quot;org.apache.struts2.views.jsp.ui.OgnlTool&quot; /&gt;
-
-    &lt;bean 
type=&quot;org.apache.struts2.dispatcher.StaticContentLoader&quot; 
class=&quot;org.apache.struts2.dispatcher.DefaultStaticContentLoader&quot; 
name=&quot;struts&quot; /&gt;
-    &lt;bean type=&quot;com.opensymphony.xwork2.UnknownHandlerManager&quot; 
class=&quot;com.opensymphony.xwork2.DefaultUnknownHandlerManager&quot; 
name=&quot;struts&quot; /&gt;
-
-    &lt;bean 
type=&quot;org.apache.struts2.dispatcher.DispatcherErrorHandler&quot; 
name=&quot;struts&quot; 
class=&quot;org.apache.struts2.dispatcher.DefaultDispatcherErrorHandler&quot; 
/&gt;
-    
-    &lt;constant name=&quot;struts.dispatcher.errorHandler&quot; 
value=&quot;struts&quot; /&gt;
-
-    &lt;!--  Silly workarounds for OGNL since there is currently no way to 
flush its internal caches --&gt;
-    &lt;bean type=&quot;ognl.PropertyAccessor&quot; 
name=&quot;java.util.ArrayList&quot; 
class=&quot;com.opensymphony.xwork2.ognl.accessor.XWorkListPropertyAccessor&quot;
 /&gt;
-    &lt;bean type=&quot;ognl.PropertyAccessor&quot; 
name=&quot;java.util.HashSet&quot; 
class=&quot;com.opensymphony.xwork2.ognl.accessor.XWorkCollectionPropertyAccessor&quot;
 /&gt;
-    &lt;bean type=&quot;ognl.PropertyAccessor&quot; 
name=&quot;java.util.HashMap&quot; 
class=&quot;com.opensymphony.xwork2.ognl.accessor.XWorkMapPropertyAccessor&quot;
 /&gt;
-
-    &lt;bean 
type=&quot;com.opensymphony.xwork2.security.ExcludedPatternsChecker&quot; 
name=&quot;struts&quot; 
class=&quot;com.opensymphony.xwork2.security.DefaultExcludedPatternsChecker&quot;
 scope=&quot;prototype&quot; /&gt;
-    &lt;bean 
type=&quot;com.opensymphony.xwork2.security.AcceptedPatternsChecker&quot; 
name=&quot;struts&quot; 
class=&quot;com.opensymphony.xwork2.security.DefaultAcceptedPatternsChecker&quot;
 scope=&quot;prototype&quot; /&gt;
-
-    &lt;bean 
type=&quot;com.opensymphony.xwork2.config.providers.ValueSubstitutor&quot; 
class=&quot;com.opensymphony.xwork2.config.providers.EnvsValueSubstitutor&quot; 
scope=&quot;singleton&quot;/&gt;
-
-    &lt;package name=&quot;struts-default&quot; abstract=&quot;true&quot; 
strict-method-invocation=&quot;true&quot;&gt;
-        &lt;result-types&gt;
-            &lt;result-type name=&quot;chain&quot; 
class=&quot;com.opensymphony.xwork2.ActionChainResult&quot;/&gt;
-            &lt;result-type name=&quot;dispatcher&quot; 
class=&quot;org.apache.struts2.result.ServletDispatcherResult&quot; 
default=&quot;true&quot;/&gt;
-            &lt;result-type name=&quot;freemarker&quot; 
class=&quot;org.apache.struts2.views.freemarker.FreemarkerResult&quot;/&gt;
-            &lt;result-type name=&quot;httpheader&quot; 
class=&quot;org.apache.struts2.result.HttpHeaderResult&quot;/&gt;
-            &lt;result-type name=&quot;redirect&quot; 
class=&quot;org.apache.struts2.result.ServletRedirectResult&quot;/&gt;
-            &lt;result-type name=&quot;redirectAction&quot; 
class=&quot;org.apache.struts2.result.ServletActionRedirectResult&quot;/&gt;
-            &lt;result-type name=&quot;stream&quot; 
class=&quot;org.apache.struts2.result.StreamResult&quot;/&gt;
-            &lt;result-type name=&quot;velocity&quot; 
class=&quot;org.apache.struts2.result.VelocityResult&quot;/&gt;
-            &lt;result-type name=&quot;xslt&quot; 
class=&quot;org.apache.struts2.views.xslt.XSLTResult&quot;/&gt;
-            &lt;result-type name=&quot;plainText&quot; 
class=&quot;org.apache.struts2.result.PlainTextResult&quot; /&gt;
-            &lt;result-type name=&quot;postback&quot; 
class=&quot;org.apache.struts2.result.PostbackResult&quot; /&gt;
-        &lt;/result-types&gt;
-
-        &lt;interceptors&gt;
-            &lt;interceptor name=&quot;alias&quot; 
class=&quot;com.opensymphony.xwork2.interceptor.AliasInterceptor&quot;/&gt;
-            &lt;interceptor name=&quot;autowiring&quot; 
class=&quot;com.opensymphony.xwork2.spring.interceptor.ActionAutowiringInterceptor&quot;/&gt;
-            &lt;interceptor name=&quot;chain&quot; 
class=&quot;com.opensymphony.xwork2.interceptor.ChainingInterceptor&quot;/&gt;
-            &lt;interceptor name=&quot;conversionError&quot; 
class=&quot;org.apache.struts2.interceptor.StrutsConversionErrorInterceptor&quot;/&gt;
-            &lt;interceptor name=&quot;cookie&quot; 
class=&quot;org.apache.struts2.interceptor.CookieInterceptor&quot;/&gt;
-            &lt;interceptor name=&quot;cookieProvider&quot; 
class=&quot;org.apache.struts2.interceptor.CookieProviderInterceptor&quot;/&gt;
-            &lt;interceptor name=&quot;clearSession&quot; 
class=&quot;org.apache.struts2.interceptor.ClearSessionInterceptor&quot; /&gt;
-            &lt;interceptor name=&quot;createSession&quot; 
class=&quot;org.apache.struts2.interceptor.CreateSessionInterceptor&quot; /&gt;
-            &lt;interceptor name=&quot;debugging&quot; 
class=&quot;org.apache.struts2.interceptor.debugging.DebuggingInterceptor&quot; 
/&gt;
-            &lt;interceptor name=&quot;execAndWait&quot; 
class=&quot;org.apache.struts2.interceptor.ExecuteAndWaitInterceptor&quot;/&gt;
-            &lt;interceptor name=&quot;exception&quot; 
class=&quot;com.opensymphony.xwork2.interceptor.ExceptionMappingInterceptor&quot;/&gt;
-            &lt;interceptor name=&quot;fileUpload&quot; 
class=&quot;org.apache.struts2.interceptor.FileUploadInterceptor&quot;/&gt;
-            &lt;interceptor name=&quot;i18n&quot; 
class=&quot;org.apache.struts2.interceptor.I18nInterceptor&quot;/&gt;
-            &lt;interceptor name=&quot;logger&quot; 
class=&quot;com.opensymphony.xwork2.interceptor.LoggingInterceptor&quot;/&gt;
-            &lt;interceptor name=&quot;modelDriven&quot; 
class=&quot;com.opensymphony.xwork2.interceptor.ModelDrivenInterceptor&quot;/&gt;
-            &lt;interceptor name=&quot;scopedModelDriven&quot; 
class=&quot;com.opensymphony.xwork2.interceptor.ScopedModelDrivenInterceptor&quot;/&gt;
-            &lt;interceptor name=&quot;params&quot; 
class=&quot;com.opensymphony.xwork2.interceptor.ParametersInterceptor&quot;/&gt;
-            &lt;interceptor name=&quot;actionMappingParams&quot; 
class=&quot;org.apache.struts2.interceptor.ActionMappingParametersInteceptor&quot;/&gt;
-            &lt;interceptor name=&quot;prepare&quot; 
class=&quot;com.opensymphony.xwork2.interceptor.PrepareInterceptor&quot;/&gt;
-            &lt;interceptor name=&quot;staticParams&quot; 
class=&quot;com.opensymphony.xwork2.interceptor.StaticParametersInterceptor&quot;/&gt;
-            &lt;interceptor name=&quot;scope&quot; 
class=&quot;org.apache.struts2.interceptor.ScopeInterceptor&quot;/&gt;
-            &lt;interceptor name=&quot;servletConfig&quot; 
class=&quot;org.apache.struts2.interceptor.ServletConfigInterceptor&quot;/&gt;
-            &lt;interceptor name=&quot;timer&quot; 
class=&quot;com.opensymphony.xwork2.interceptor.TimerInterceptor&quot;/&gt;
-            &lt;interceptor name=&quot;token&quot; 
class=&quot;org.apache.struts2.interceptor.TokenInterceptor&quot;/&gt;
-            &lt;interceptor name=&quot;tokenSession&quot; 
class=&quot;org.apache.struts2.interceptor.TokenSessionStoreInterceptor&quot;/&gt;
-            &lt;interceptor name=&quot;validation&quot; 
class=&quot;org.apache.struts2.interceptor.validation.AnnotationValidationInterceptor&quot;/&gt;
-            &lt;interceptor name=&quot;workflow&quot; 
class=&quot;com.opensymphony.xwork2.interceptor.DefaultWorkflowInterceptor&quot;/&gt;
-            &lt;interceptor name=&quot;store&quot; 
class=&quot;org.apache.struts2.interceptor.MessageStoreInterceptor&quot; /&gt;
-            &lt;interceptor name=&quot;checkbox&quot; 
class=&quot;org.apache.struts2.interceptor.CheckboxInterceptor&quot; /&gt;
-            &lt;interceptor name=&quot;datetime&quot; 
class=&quot;org.apache.struts2.interceptor.DateTextFieldInterceptor&quot; /&gt;
-            &lt;interceptor name=&quot;profiling&quot; 
class=&quot;org.apache.struts2.interceptor.ProfilingActivationInterceptor&quot; 
/&gt;
-            &lt;interceptor name=&quot;roles&quot; 
class=&quot;org.apache.struts2.interceptor.RolesInterceptor&quot; /&gt;
-            &lt;interceptor name=&quot;annotationWorkflow&quot; 
class=&quot;com.opensymphony.xwork2.interceptor.annotations.AnnotationWorkflowInterceptor&quot;
 /&gt;
-            &lt;interceptor name=&quot;multiselect&quot; 
class=&quot;org.apache.struts2.interceptor.MultiselectInterceptor&quot; /&gt;
-            &lt;interceptor name=&quot;noop&quot; 
class=&quot;org.apache.struts2.interceptor.NoOpInterceptor&quot; /&gt;
-
-            &lt;!-- Empty stack - performs no operations --&gt;
-            &lt;interceptor-stack name=&quot;emptyStack&quot;&gt;
-                &lt;interceptor-ref name=&quot;noop&quot;/&gt;
-            &lt;/interceptor-stack&gt;
-
-            &lt;!-- Basic stack --&gt;
-            &lt;interceptor-stack name=&quot;basicStack&quot;&gt;
-                &lt;interceptor-ref name=&quot;exception&quot;/&gt;
-                &lt;interceptor-ref name=&quot;servletConfig&quot;/&gt;
-                &lt;interceptor-ref name=&quot;prepare&quot;/&gt;
-                &lt;interceptor-ref name=&quot;checkbox&quot;/&gt;
-                &lt;interceptor-ref name=&quot;datetime&quot;/&gt;
-                &lt;interceptor-ref name=&quot;multiselect&quot;/&gt;
-                &lt;interceptor-ref name=&quot;actionMappingParams&quot;/&gt;
-                &lt;interceptor-ref name=&quot;params&quot;/&gt;
-                &lt;interceptor-ref name=&quot;conversionError&quot;/&gt;
-            &lt;/interceptor-stack&gt;
-
-            &lt;!-- Sample validation and workflow stack --&gt;
-            &lt;interceptor-stack name=&quot;validationWorkflowStack&quot;&gt;
-                &lt;interceptor-ref name=&quot;basicStack&quot;/&gt;
-                &lt;interceptor-ref name=&quot;validation&quot;/&gt;
-                &lt;interceptor-ref name=&quot;workflow&quot;/&gt;
-            &lt;/interceptor-stack&gt;
-
-            &lt;!-- Sample file upload stack --&gt;
-            &lt;interceptor-stack name=&quot;fileUploadStack&quot;&gt;
-                &lt;interceptor-ref name=&quot;fileUpload&quot;/&gt;
-                &lt;interceptor-ref name=&quot;basicStack&quot;/&gt;
-            &lt;/interceptor-stack&gt;
-
-            &lt;!-- Sample model-driven stack  --&gt;
-            &lt;interceptor-stack name=&quot;modelDrivenStack&quot;&gt;
-                &lt;interceptor-ref name=&quot;modelDriven&quot;/&gt;
-                &lt;interceptor-ref name=&quot;basicStack&quot;/&gt;
-            &lt;/interceptor-stack&gt;
-
-            &lt;!-- Sample action chaining stack --&gt;
-            &lt;interceptor-stack name=&quot;chainStack&quot;&gt;
-                &lt;interceptor-ref name=&quot;chain&quot;/&gt;
-                &lt;interceptor-ref name=&quot;basicStack&quot;/&gt;
-            &lt;/interceptor-stack&gt;
-
-            &lt;!-- Sample i18n stack --&gt;
-            &lt;interceptor-stack name=&quot;i18nStack&quot;&gt;
-                &lt;interceptor-ref name=&quot;i18n&quot;/&gt;
-                &lt;interceptor-ref name=&quot;basicStack&quot;/&gt;
-            &lt;/interceptor-stack&gt;
-
-            &lt;!-- An example of the paramsPrepareParams trick. This stack
-                 is exactly the same as the defaultStack, except that it
-                 includes one extra interceptor before the prepare interceptor:
-                 the params interceptor.
-
-                 This is useful for when you wish to apply parameters directly
-                 to an object that you wish to load externally (such as a DAO
-                 or database or service layer), but can&#39;t load that object
-                 until at least the ID parameter has been loaded. By loading
-                 the parameters twice, you can retrieve the object in the
-                 prepare() method, allowing the second params interceptor to
-                 apply the values on the object. --&gt;
-            &lt;interceptor-stack name=&quot;paramsPrepareParamsStack&quot;&gt;
-                &lt;interceptor-ref name=&quot;exception&quot;/&gt;
-                &lt;interceptor-ref name=&quot;alias&quot;/&gt;
-                &lt;interceptor-ref name=&quot;i18n&quot;/&gt;
-                &lt;interceptor-ref name=&quot;checkbox&quot;/&gt;
-                &lt;interceptor-ref name=&quot;datetime&quot;/&gt;
-                &lt;interceptor-ref name=&quot;multiselect&quot;/&gt;
-                &lt;interceptor-ref name=&quot;params&quot;/&gt;
-                &lt;interceptor-ref name=&quot;servletConfig&quot;/&gt;
-                &lt;interceptor-ref name=&quot;prepare&quot;/&gt;
-                &lt;interceptor-ref name=&quot;chain&quot;/&gt;
-                &lt;interceptor-ref name=&quot;modelDriven&quot;/&gt;
-                &lt;interceptor-ref name=&quot;fileUpload&quot;/&gt;
-                &lt;interceptor-ref name=&quot;staticParams&quot;/&gt;
-                &lt;interceptor-ref name=&quot;actionMappingParams&quot;/&gt;
-                &lt;interceptor-ref name=&quot;params&quot;/&gt;
-                &lt;interceptor-ref name=&quot;conversionError&quot;/&gt;
-                &lt;interceptor-ref name=&quot;validation&quot;&gt;
-                    &lt;param 
name=&quot;excludeMethods&quot;&gt;input,back,cancel,browse&lt;/param&gt;
-                &lt;/interceptor-ref&gt;
-                &lt;interceptor-ref name=&quot;workflow&quot;&gt;
-                    &lt;param 
name=&quot;excludeMethods&quot;&gt;input,back,cancel,browse&lt;/param&gt;
-                &lt;/interceptor-ref&gt;
-            &lt;/interceptor-stack&gt;
-
-            &lt;!-- A complete stack with all the common interceptors in place.
-                 Generally, this stack should be the one you use, though it
-                 may do more than you need. Also, the ordering can be
-                 switched around (ex: if you wish to have your servlet-related
-                 objects applied before prepare() is called, you&#39;d need to 
move
-                 servletConfig interceptor up.
-
-                 This stack also excludes from the normal validation and 
workflow
-                 the method names input, back, and cancel. These typically are
-                 associated with requests that should not be validated.
-                 --&gt;
-            &lt;interceptor-stack name=&quot;defaultStack&quot;&gt;
-                &lt;interceptor-ref name=&quot;exception&quot;/&gt;
-                &lt;interceptor-ref name=&quot;alias&quot;/&gt;
-                &lt;interceptor-ref name=&quot;servletConfig&quot;/&gt;
-                &lt;interceptor-ref name=&quot;i18n&quot;/&gt;
-                &lt;interceptor-ref name=&quot;prepare&quot;/&gt;
-                &lt;interceptor-ref name=&quot;chain&quot;/&gt;
-                &lt;interceptor-ref name=&quot;scopedModelDriven&quot;/&gt;
-                &lt;interceptor-ref name=&quot;modelDriven&quot;/&gt;
-                &lt;interceptor-ref name=&quot;fileUpload&quot;/&gt;
-                &lt;interceptor-ref name=&quot;checkbox&quot;/&gt;
-                &lt;interceptor-ref name=&quot;datetime&quot;/&gt;
-                &lt;interceptor-ref name=&quot;multiselect&quot;/&gt;
-                &lt;interceptor-ref name=&quot;staticParams&quot;/&gt;
-                &lt;interceptor-ref name=&quot;actionMappingParams&quot;/&gt;
-                &lt;interceptor-ref name=&quot;params&quot;/&gt;
-                &lt;interceptor-ref name=&quot;conversionError&quot;/&gt;
-                &lt;interceptor-ref name=&quot;validation&quot;&gt;
-                    &lt;param 
name=&quot;excludeMethods&quot;&gt;input,back,cancel,browse&lt;/param&gt;
-                &lt;/interceptor-ref&gt;
-                &lt;interceptor-ref name=&quot;workflow&quot;&gt;
-                    &lt;param 
name=&quot;excludeMethods&quot;&gt;input,back,cancel,browse&lt;/param&gt;
-                &lt;/interceptor-ref&gt;
-                &lt;interceptor-ref name=&quot;debugging&quot;/&gt;
-            &lt;/interceptor-stack&gt;
-
-            &lt;!-- The completeStack is here for backwards compatibility for
-                 applications that still refer to the defaultStack by the
-                 old name --&gt;
-            &lt;interceptor-stack name=&quot;completeStack&quot;&gt;
-                &lt;interceptor-ref name=&quot;defaultStack&quot;/&gt;
-            &lt;/interceptor-stack&gt;
-
-            &lt;!-- Sample execute and wait stack.
-                 Note: execAndWait should always be the *last* interceptor. 
--&gt;
-            &lt;interceptor-stack name=&quot;executeAndWaitStack&quot;&gt;
-                &lt;interceptor-ref name=&quot;execAndWait&quot;&gt;
-                    &lt;param 
name=&quot;excludeMethods&quot;&gt;input,back,cancel&lt;/param&gt;
-                &lt;/interceptor-ref&gt;
-                &lt;interceptor-ref name=&quot;defaultStack&quot;/&gt;
-                &lt;interceptor-ref name=&quot;execAndWait&quot;&gt;
-                    &lt;param 
name=&quot;excludeMethods&quot;&gt;input,back,cancel&lt;/param&gt;
-                &lt;/interceptor-ref&gt;
-            &lt;/interceptor-stack&gt;
-
-       &lt;/interceptors&gt;
-
-        &lt;default-interceptor-ref name=&quot;defaultStack&quot;/&gt;
-
-        &lt;default-class-ref 
class=&quot;com.opensymphony.xwork2.ActionSupport&quot; /&gt;
-
-        
&lt;global-allowed-methods&gt;execute,input,back,cancel,browse,save,delete,list,index&lt;/global-allowed-methods&gt;
-
-    &lt;/package&gt;
-
-&lt;/struts&gt;
-]]></script>
-</div></div>Since the <code>struts-default.xml</code> is included in the 
application's configuration by default, all of the predefined interceptors and 
stacks are available "out of the box".<h2 
id="Interceptors-FrameworkInterceptors">Framework 
Interceptors</h2><p>Interceptor classes are also defined using a key-value pair 
specified in the Struts configuration file. The names specified below come 
specified in <a shape="rect" 
href="struts-defaultxml.html">struts-default.xml</a>. If you extend the 
<code>struts-default</code> package, then you can use the names below. 
Otherwise, they must be defined in your package with a name-class pair 
specified in the &lt;interceptors&gt; tag.</p><div class="table-wrap"><table 
class="confluenceTable"><tbody><tr><th colspan="1" rowspan="1" 
class="confluenceTh"><p>Interceptor</p></th><th colspan="1" rowspan="1" 
class="confluenceTh"><p>Name</p></th><th colspan="1" rowspan="1" 
class="confluenceTh"><p>Description</p></th></tr><tr><td colspan="1" rowspan="
 1" class="confluenceTd"><p><a shape="rect" href="alias-interceptor.html">Alias 
Interceptor</a></p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>alias</p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>Converts similar parameters that may be named 
differently between requests.</p></td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"><p><a shape="rect" 
href="chaining-interceptor.html">Chaining Interceptor</a></p></td><td 
colspan="1" rowspan="1" class="confluenceTd"><p>chain</p></td><td colspan="1" 
rowspan="1" class="confluenceTd"><p>Makes the previous Action's properties 
available to the current Action. Commonly used together with &lt;result 
type="chain"&gt; (in the previous Action).</p></td></tr><tr><td colspan="1" 
rowspan="1" class="confluenceTd"><p><a shape="rect" 
href="checkbox-interceptor.html">Checkbox Interceptor</a></p></td><td 
colspan="1" rowspan="1" class="confluenceTd"><p>checkbox</p></td><td 
colspan="1" rowspan="1" class="confluenceTd"><p>Adds 
 automatic checkbox handling code that detect an unchecked checkbox and add it 
as a parameter with a default (usually 'false') value. Uses a specially named 
hidden field to detect unsubmitted checkboxes. The default unchecked value is 
overridable for non-boolean value'd checkboxes.</p></td></tr><tr><td 
colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" 
href="cookie-interceptor.html">Cookie Interceptor</a></p></td><td colspan="1" 
rowspan="1" class="confluenceTd"><p>cookie</p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>Inject cookie with a certain configurable name / value 
into action. (Since 2.0.7.)</p></td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"><p><a shape="rect" 
href="cookieprovider-interceptor.html">CookieProvider 
Interceptor</a></p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>cookieProvider</p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>Transfer cookies from action to response (Since 
2.3.15.)</p></td></tr><tr><t
 d colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" 
href="conversion-error-interceptor.html">Conversion Error 
Interceptor</a></p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>conversionError</p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>Adds conversion errors from the ActionContext to the 
Action's field errors</p></td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"><p><a shape="rect" 
href="create-session-interceptor.html">Create Session 
Interceptor</a></p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>createSession</p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>Create an HttpSession automatically, useful with 
certain Interceptors that require a HttpSession to work properly (like the 
TokenInterceptor)</p></td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"><p><a shape="rect" 
href="debugginginterceptor.html">DebuggingInterceptor</a></p></td><td 
colspan="1" rowspan="1" class="confluenceTd"><p>debugging</p
 ></td><td colspan="1" rowspan="1" class="confluenceTd"><p>Provides several 
 >different debugging screens to provide insight into the data behind the 
 >page.</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a 
 >shape="rect" href="execute-and-wait-interceptor.html">Execute and Wait 
 >Interceptor</a></p></td><td colspan="1" rowspan="1" 
 >class="confluenceTd"><p>execAndWait</p></td><td colspan="1" rowspan="1" 
 >class="confluenceTd"><p>Executes the Action in the background and then sends 
 >the user off to an intermediate waiting page.</p></td></tr><tr><td 
 >colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" 
 >href="exception-interceptor.html">Exception Interceptor</a></p></td><td 
 >colspan="1" rowspan="1" class="confluenceTd"><p>exception</p></td><td 
 >colspan="1" rowspan="1" class="confluenceTd"><p>Maps exceptions to a 
 >result.</p></td></tr><tr><td colspan="1" rowspan="1" 
 >class="confluenceTd"><p><a shape="rect" 
 >href="file-upload-interceptor.html">File Upload Interceptor</a></
 p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>fileUpload</p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>An Interceptor that adds easy access to file upload 
support.</p></td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"><p><a shape="rect" href="i18n-interceptor.html">I18n 
Interceptor</a></p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>i18n</p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>Remembers the locale selected for a user's 
session.</p></td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"><p><a shape="rect" href="logger-interceptor.html">Logger 
Interceptor</a></p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>logger</p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>Outputs the name of the Action.</p></td></tr><tr><td 
colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" 
href="message-store-interceptor.html">Message Store Interceptor</a></p></td><td 
colspan="1" rowspan="1" class="
 confluenceTd"><p>store</p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>Store and retrieve action messages / errors / field 
errors for action that implements ValidationAware interface into 
session.</p></td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"><p><a shape="rect" 
href="model-driven-interceptor.html">Model Driven Interceptor</a></p></td><td 
colspan="1" rowspan="1" class="confluenceTd"><p>modelDriven</p></td><td 
colspan="1" rowspan="1" class="confluenceTd"><p>If the Action implements 
ModelDriven, pushes the <code>getModel</code> Result onto the Value 
Stack.</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a 
shape="rect" href="scoped-model-driven-interceptor.html">Scoped Model Driven 
Interceptor</a></p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>scopedModelDriven</p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>If the Action implements ScopedModelDriven, the 
interceptor retrieves and stores the model from a scop
 e and sets it on the action calling 
<code>setModel</code>.</p></td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"><p><a shape="rect" 
href="parameters-interceptor.html">Parameters Interceptor</a></p></td><td 
colspan="1" rowspan="1" class="confluenceTd"><p>params</p></td><td colspan="1" 
rowspan="1" class="confluenceTd"><p>Sets the request parameters onto the 
Action.</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a 
shape="rect" href="prepare-interceptor.html">Prepare 
Interceptor</a></p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>prepare</p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>If the Action implements Preparable, calls its 
<code>prepare</code> method.</p></td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"><p><a shape="rect" href="scope-interceptor.html">Scope 
Interceptor</a></p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>scope</p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>Simple mech
 anism for storing Action state in the session or application 
scope.</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a 
shape="rect" href="servlet-config-interceptor.html">Servlet Config 
Interceptor</a></p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>servletConfig</p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>Provide access to Maps representing HttpServletRequest 
and HttpServletResponse.</p></td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"><p><a shape="rect" 
href="static-parameters-interceptor.html">Static Parameters 
Interceptor</a></p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>staticParams</p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>Sets the <code>struts.xml</code> defined parameters 
onto the action. These are the &lt;param&gt; tags that are direct children of 
the &lt;action&gt; tag.</p></td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"><p><a shape="rect" href="roles-interceptor.htm
 l">Roles Interceptor</a></p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>roles</p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>Action will only be executed if the user has the 
correct JAAS role.</p></td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"><p><a shape="rect" href="timer-interceptor.html">Timer 
Interceptor</a></p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>timer</p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>Outputs how long the Action takes to execute (including 
nested Interceptors and View)</p></td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"><p><a shape="rect" href="token-interceptor.html">Token 
Interceptor</a></p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>token</p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>Checks for valid token presence in Action, prevents 
duplicate form submission.</p></td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"><p><a shape="rect" hr
 ef="token-session-interceptor.html">Token Session Interceptor</a></p></td><td 
colspan="1" rowspan="1" class="confluenceTd"><p>tokenSession</p></td><td 
colspan="1" rowspan="1" class="confluenceTd"><p>Same as Token Interceptor, but 
stores the submitted data in session when handed an invalid 
token</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a 
shape="rect" href="validation-interceptor.html">Validation 
Interceptor</a></p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>validation</p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>Performs validation using the validators defined in 
<em>action</em>-validation.xml</p></td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"><p><a shape="rect" 
href="default-workflow-interceptor.html">Default Workflow 
Interceptor</a></p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>workflow</p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>Calls the <code>validate</code> method in your Actio
 n class. If Action errors are created then it returns the <code>INPUT</code> 
view.</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a 
shape="rect" href="parameter-filter-interceptor.html">Parameter Filter 
Interceptor</a></p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>N/A</p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>Removes parameters from the list of those available to 
Actions</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a 
shape="rect" href="profiling-interceptor.html">Profiling 
Interceptor</a></p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>profiling</p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>Activate profiling through 
parameter</p></td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"><p><a shape="rect" 
href="multiselect-interceptor.html">Multiselect Interceptor</a></p></td><td 
colspan="1" rowspan="1" class="confluenceTd"><p>multiselect</p></td><td 
colspan="1" rowspan="1"
  class="confluenceTd"><p>Like the checkbox interceptor detects that no value 
was selected for a field with multiple values (like a select) and adds an empty 
parameter</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><a 
shape="rect" href="noop-interceptor.html">NoOp Interceptor</a></td><td 
colspan="1" rowspan="1" class="confluenceTd">noop</td><td colspan="1" 
rowspan="1" class="confluenceTd">Does nothing, just passes invocation further, 
used in empty stack</td></tr></tbody></table></div><div 
class="confluence-information-macro confluence-information-macro-warning"><span 
class="aui-icon aui-icon-small aui-iconfont-error 
confluence-information-macro-icon"></span><div 
class="confluence-information-macro-body"><p>Since 2.0.7, Interceptors and 
Results with hyphenated names were converted to camelCase. (The former 
model-driven is now modelDriven.) The original hyphenated names are retained as 
"aliases" until Struts 2.1.0. For clarity, the hyphenated versions are not 
listed 
 here, but might be referenced in prior versions of the 
documentation.</p></div></div><h3 id="Interceptors-MethodFiltering">Method 
Filtering</h3><p>
-</p><p></p><p>
-MethodFilterInterceptor is an abstract <code>Interceptor</code> used as
-a base class for interceptors that will filter execution based on method 
-names according to specified included/excluded method lists.</p>
-
-<p></p>
-
-<p>Settable parameters are as follows:</p>
-
-<p></p><ul><li>excludeMethods - method names to be excluded from interceptor 
processing</li><li>includeMethods - method names to be included in interceptor 
processing</li></ul>
-
-<p></p><p></p>
-
-<p><b>NOTE:</b> If method name are available in both includeMethods and 
-excludeMethods, it will be considered as an included method: 
-includeMethods takes precedence over excludeMethods.</p>
-
-<p></p>
-
-<p>Interceptors that extends this capability include:</p>
-
-<p></p><ul><li>TokenInterceptor</li><li>TokenSessionStoreInterceptor</li><li>DefaultWorkflowInterceptor</li><li>ValidationInterceptor</li></ul>
-<h3 id="Interceptors-InterceptorParameterOverriding">Interceptor Parameter 
Overriding</h3><p>Interceptor's parameter could be overridden through the 
following ways :</p><p><strong>Method 1</strong>:</p><div class="code panel 
pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<pre class="brush: xml; gutter: false; theme: Default" 
style="font-size:12px;">&lt;action name="myAction" class="myActionClass"&gt;
+</plain-text-body><p>Looking inside <code>struts-default.xml</code>, we can 
see how it's done.</p><h3 id="Interceptors-TheDefaultConfiguration">The Default 
Configuration</h3><p><plain-text-body>{snippet:id=all|lang=xml|url=struts2/core/src/main/resources/struts-default.xml}</plain-text-body>Since
 the <code>struts-default.xml</code> is included in the application's 
configuration by default, all of the predefined interceptors and stacks are 
available "out of the box".</p><h2 
id="Interceptors-FrameworkInterceptors">Framework 
Interceptors</h2><p>Interceptor classes are also defined using a key-value pair 
specified in the Struts configuration file. The names specified below come 
specified in <a shape="rect" 
href="struts-defaultxml.html">struts-default.xml</a>. If you extend the 
<code>struts-default</code> package, then you can use the names below. 
Otherwise, they must be defined in your package with a name-class pair 
specified in the &lt;interceptors&gt; tag.</p><div class="table-wrap"><
 table class="confluenceTable"><tbody><tr><th colspan="1" rowspan="1" 
class="confluenceTh"><p>Interceptor</p></th><th colspan="1" rowspan="1" 
class="confluenceTh"><p>Name</p></th><th colspan="1" rowspan="1" 
class="confluenceTh"><p>Description</p></th></tr><tr><td colspan="1" 
rowspan="1" class="confluenceTd"><p><a shape="rect" 
href="alias-interceptor.html">Alias Interceptor</a></p></td><td colspan="1" 
rowspan="1" class="confluenceTd"><p>alias</p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>Converts similar parameters that may be named 
differently between requests.</p></td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"><p><a shape="rect" 
href="chaining-interceptor.html">Chaining Interceptor</a></p></td><td 
colspan="1" rowspan="1" class="confluenceTd"><p>chain</p></td><td colspan="1" 
rowspan="1" class="confluenceTd"><p>Makes the previous Action's properties 
available to the current Action. Commonly used together with &lt;result 
type="chain"&gt; (in the previous Ac
 tion).</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a 
shape="rect" href="checkbox-interceptor.html">Checkbox 
Interceptor</a></p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>checkbox</p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>Adds automatic checkbox handling code that detect an 
unchecked checkbox and add it as a parameter with a default (usually 'false') 
value. Uses a specially named hidden field to detect unsubmitted checkboxes. 
The default unchecked value is overridable for non-boolean value'd 
checkboxes.</p></td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"><p><a shape="rect" href="cookie-interceptor.html">Cookie 
Interceptor</a></p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>cookie</p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>Inject cookie with a certain configurable name / value 
into action. (Since 2.0.7.)</p></td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"><p><a shape="rec
 t" href="cookieprovider-interceptor.html">CookieProvider 
Interceptor</a></p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>cookieProvider</p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>Transfer cookies from action to response (Since 
2.3.15.)</p></td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"><p><a shape="rect" 
href="conversion-error-interceptor.html">Conversion Error 
Interceptor</a></p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>conversionError</p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>Adds conversion errors from the ActionContext to the 
Action's field errors</p></td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"><p><a shape="rect" 
href="create-session-interceptor.html">Create Session 
Interceptor</a></p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>createSession</p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>Create an HttpSession automatically, useful with 
certain Interceptors tha
 t require a HttpSession to work properly (like the 
TokenInterceptor)</p></td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"><p><a shape="rect" 
href="debugginginterceptor.html">DebuggingInterceptor</a></p></td><td 
colspan="1" rowspan="1" class="confluenceTd"><p>debugging</p></td><td 
colspan="1" rowspan="1" class="confluenceTd"><p>Provides several different 
debugging screens to provide insight into the data behind the 
page.</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a 
shape="rect" href="execute-and-wait-interceptor.html">Execute and Wait 
Interceptor</a></p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>execAndWait</p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>Executes the Action in the background and then sends 
the user off to an intermediate waiting page.</p></td></tr><tr><td colspan="1" 
rowspan="1" class="confluenceTd"><p><a shape="rect" 
href="exception-interceptor.html">Exception Interceptor</a></p></td><td 
colspan="1" r
 owspan="1" class="confluenceTd"><p>exception</p></td><td colspan="1" 
rowspan="1" class="confluenceTd"><p>Maps exceptions to a 
result.</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a 
shape="rect" href="file-upload-interceptor.html">File Upload 
Interceptor</a></p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>fileUpload</p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>An Interceptor that adds easy access to file upload 
support.</p></td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"><p><a shape="rect" href="i18n-interceptor.html">I18n 
Interceptor</a></p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>i18n</p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>Remembers the locale selected for a user's 
session.</p></td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"><p><a shape="rect" href="logger-interceptor.html">Logger 
Interceptor</a></p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>logger</p><
 /td><td colspan="1" rowspan="1" class="confluenceTd"><p>Outputs the name of 
the Action.</p></td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"><p><a shape="rect" 
href="message-store-interceptor.html">Message Store Interceptor</a></p></td><td 
colspan="1" rowspan="1" class="confluenceTd"><p>store</p></td><td colspan="1" 
rowspan="1" class="confluenceTd"><p>Store and retrieve action messages / errors 
/ field errors for action that implements ValidationAware interface into 
session.</p></td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"><p><a shape="rect" 
href="model-driven-interceptor.html">Model Driven Interceptor</a></p></td><td 
colspan="1" rowspan="1" class="confluenceTd"><p>modelDriven</p></td><td 
colspan="1" rowspan="1" class="confluenceTd"><p>If the Action implements 
ModelDriven, pushes the <code>getModel</code> Result onto the Value 
Stack.</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a 
shape="rect" href="scoped-model-driven-intercepto
 r.html">Scoped Model Driven Interceptor</a></p></td><td colspan="1" 
rowspan="1" class="confluenceTd"><p>scopedModelDriven</p></td><td colspan="1" 
rowspan="1" class="confluenceTd"><p>If the Action implements ScopedModelDriven, 
the interceptor retrieves and stores the model from a scope and sets it on the 
action calling <code>setModel</code>.</p></td></tr><tr><td colspan="1" 
rowspan="1" class="confluenceTd"><p><a shape="rect" 
href="parameters-interceptor.html">Parameters Interceptor</a></p></td><td 
colspan="1" rowspan="1" class="confluenceTd"><p>params</p></td><td colspan="1" 
rowspan="1" class="confluenceTd"><p>Sets the request parameters onto the 
Action.</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a 
shape="rect" href="prepare-interceptor.html">Prepare 
Interceptor</a></p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>prepare</p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>If the Action implements Preparable, calls its 
<code>prepare</code
 > method.</p></td></tr><tr><td colspan="1" rowspan="1" 
 > class="confluenceTd"><p><a shape="rect" href="scope-interceptor.html">Scope 
 > Interceptor</a></p></td><td colspan="1" rowspan="1" 
 > class="confluenceTd"><p>scope</p></td><td colspan="1" rowspan="1" 
 > class="confluenceTd"><p>Simple mechanism for storing Action state in the 
 > session or application scope.</p></td></tr><tr><td colspan="1" rowspan="1" 
 > class="confluenceTd"><p><a shape="rect" 
 > href="servlet-config-interceptor.html">Servlet Config 
 > Interceptor</a></p></td><td colspan="1" rowspan="1" 
 > class="confluenceTd"><p>servletConfig</p></td><td colspan="1" rowspan="1" 
 > class="confluenceTd"><p>Provide access to Maps representing 
 > HttpServletRequest and HttpServletResponse.</p></td></tr><tr><td colspan="1" 
 > rowspan="1" class="confluenceTd"><p><a shape="rect" 
 > href="static-parameters-interceptor.html">Static Parameters 
 > Interceptor</a></p></td><td colspan="1" rowspan="1" 
 > class="confluenceTd"><p>staticParams</p></td><td colspan="1" rowspan="1" 
 > class=
 "confluenceTd"><p>Sets the <code>struts.xml</code> defined parameters onto the 
action. These are the &lt;param&gt; tags that are direct children of the 
&lt;action&gt; tag.</p></td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"><p><a shape="rect" href="roles-interceptor.html">Roles 
Interceptor</a></p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>roles</p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>Action will only be executed if the user has the 
correct JAAS role.</p></td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"><p><a shape="rect" href="timer-interceptor.html">Timer 
Interceptor</a></p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>timer</p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>Outputs how long the Action takes to execute (including 
nested Interceptors and View)</p></td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"><p><a shape="rect" href="token-interceptor.html">Token 
Interceptor</a></p></td>
 <td colspan="1" rowspan="1" class="confluenceTd"><p>token</p></td><td 
colspan="1" rowspan="1" class="confluenceTd"><p>Checks for valid token presence 
in Action, prevents duplicate form submission.</p></td></tr><tr><td colspan="1" 
rowspan="1" class="confluenceTd"><p><a shape="rect" 
href="token-session-interceptor.html">Token Session Interceptor</a></p></td><td 
colspan="1" rowspan="1" class="confluenceTd"><p>tokenSession</p></td><td 
colspan="1" rowspan="1" class="confluenceTd"><p>Same as Token Interceptor, but 
stores the submitted data in session when handed an invalid 
token</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a 
shape="rect" href="validation-interceptor.html">Validation 
Interceptor</a></p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>validation</p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>Performs validation using the validators defined in 
<em>action</em>-validation.xml</p></td></tr><tr><td colspan="1" rowspan="1" 
class="conf
 luenceTd"><p><a shape="rect" href="default-workflow-interceptor.html">Default 
Workflow Interceptor</a></p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>workflow</p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>Calls the <code>validate</code> method in your Action 
class. If Action errors are created then it returns the <code>INPUT</code> 
view.</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a 
shape="rect" href="parameter-filter-interceptor.html">Parameter Filter 
Interceptor</a></p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>N/A</p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>Removes parameters from the list of those available to 
Actions</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a 
shape="rect" href="profiling-interceptor.html">Profiling 
Interceptor</a></p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>profiling</p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>Activate 
 profiling through parameter</p></td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"><p><a shape="rect" 
href="multiselect-interceptor.html">Multiselect Interceptor</a></p></td><td 
colspan="1" rowspan="1" class="confluenceTd"><p>multiselect</p></td><td 
colspan="1" rowspan="1" class="confluenceTd"><p>Like the checkbox interceptor 
detects that no value was selected for a field with multiple values (like a 
select) and adds an empty parameter</p></td></tr><tr><td colspan="1" 
rowspan="1" class="confluenceTd"><a shape="rect" 
href="noop-interceptor.html">NoOp Interceptor</a></td><td colspan="1" 
rowspan="1" class="confluenceTd">noop</td><td colspan="1" rowspan="1" 
class="confluenceTd">Does nothing, just passes invocation further, used in 
empty stack</td></tr></tbody></table></div><rich-text-body><p>Since 2.0.7, 
Interceptors and Results with hyphenated names were converted to camelCase. 
(The former model-driven is now modelDriven.) The original hyphenated names are 
retained as "alias
 es" until Struts 2.1.0. For clarity, the hyphenated versions are not listed 
here, but might be referenced in prior versions of the 
documentation.</p></rich-text-body><h3 id="Interceptors-MethodFiltering">Method 
Filtering</h3><p><plain-text-body>{snippet:id=javadoc|javadoc=true|url=com.opensymphony.xwork2.interceptor.MethodFilterInterceptor}</plain-text-body></p><h3
 id="Interceptors-InterceptorParameterOverriding">Interceptor Parameter 
Overriding</h3><p>Interceptor's parameter could be overridden through the 
following ways :</p><p><strong>Method 1</strong>:</p><parameter 
ac:name="">xml</parameter><plain-text-body>&lt;action name="myAction" 
class="myActionClass"&gt;
     &lt;interceptor-ref name="exception"/&gt;
     &lt;interceptor-ref name="alias"/&gt;
     &lt;interceptor-ref name="params"/&gt;
@@ -627,20 +174,14 @@ includeMethods takes precedence over excludeMethods.</p>
         &lt;param 
name="excludeMethods"&gt;myWorkflowExcludeMethod&lt;/param&gt;
     &lt;/interceptor-ref&gt;
 &lt;/action&gt;
-</pre>
-</div></div><p><strong>Method 2</strong>:</p><div class="code panel pdl" 
style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<pre class="brush: xml; gutter: false; theme: Default" 
style="font-size:12px;">&lt;action name="myAction" class="myActionClass"&gt;
+</plain-text-body><p><strong>Method 2</strong>:</p><parameter 
ac:name="">xml</parameter><plain-text-body>&lt;action name="myAction" 
class="myActionClass"&gt;
     &lt;interceptor-ref name="defaultStack"&gt;
         &lt;param 
name="validation.excludeMethods"&gt;myValidationExcludeMethod&lt;/param&gt;
         &lt;param 
name="workflow.excludeMethods"&gt;myWorkflowExcludeMethod&lt;/param&gt;
     &lt;/interceptor-ref&gt;
 &lt;/action&gt;
-</pre>
-</div></div><p>In the first method, the whole default stack is copied and the 
parameter then changed accordingly.</p><p>In the second method, the 
<code>interceptor-ref</code> refers to an existing interceptor-stack, namely 
<code>defaultStack</code> in this example, and override the 
<code>validator</code> and <code>workflow</code> interceptor 
<code>excludeMethods</code> attribute. Note that in the <code>param</code> tag, 
the name attribute contains a dot (.) the word before the dot(.) specifies the 
interceptor name whose parameter is to be overridden and the word after the dot 
(.) specifies the parameter itself. The syntax is as follows:</p><div 
class="code panel pdl" style="border-width: 1px;"><div class="codeContent 
panelContent pdl">
-<pre class="brush: java; gutter: false; theme: Default" 
style="font-size:12px;">   &lt;interceptor-name&gt;.&lt;parameter-name&gt;
-</pre>
-</div></div><p>Note also that in this case the <code>interceptor-ref</code> 
name attribute is used to indicate an interceptor stack which makes sense as if 
it is referring to the interceptor itself it would be just using Method 1 
describe above.</p><p><strong>Method 3</strong>:</p><div class="code panel pdl" 
style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<pre class="brush: xml; gutter: false; theme: Default" 
style="font-size:12px;">&lt;interceptors&gt;
+</plain-text-body><p>In the first method, the whole default stack is copied 
and the parameter then changed accordingly.</p><p>In the second method, the 
<code>interceptor-ref</code> refers to an existing interceptor-stack, namely 
<code>defaultStack</code> in this example, and override the 
<code>validator</code> and <code>workflow</code> interceptor 
<code>excludeMethods</code> attribute. Note that in the <code>param</code> tag, 
the name attribute contains a dot (.) the word before the dot(.) specifies the 
interceptor name whose parameter is to be overridden and the word after the dot 
(.) specifies the parameter itself. The syntax is as 
follows:</p><plain-text-body>   &lt;interceptor-name&gt;.&lt;parameter-name&gt;
+</plain-text-body><p>Note also that in this case the 
<code>interceptor-ref</code> name attribute is used to indicate an interceptor 
stack which makes sense as if it is referring to the interceptor itself it 
would be just using Method 1 describe above.</p><p><strong>Method 
3</strong>:</p><parameter 
ac:name="">xml</parameter><plain-text-body>&lt;interceptors&gt;
     &lt;interceptor-stack name="parentStack"&gt;
         &lt;interceptor-ref name="defaultStack"&gt;
             &lt;param name="params.excludeParams"&gt;token&lt;/param&gt;
@@ -649,32 +190,24 @@ includeMethods takes precedence over excludeMethods.</p>
 &lt;/interceptors&gt;
 
 &lt;default-interceptor-ref name="parentStack"/&gt;
-</pre>
-</div></div><h3 
id="Interceptors-InterceptorParameterOverridingInheritance">Interceptor 
Parameter Overriding Inheritance</h3><p>Parameters override are not inherited 
in interceptors, meaning that the last set of overridden parameters will be 
used. For example, if a stack overrides the parameter "defaultBlock" for the 
"postPrepareParameterFilter" interceptor as:</p><div class="code panel pdl" 
style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<pre class="brush: xml; gutter: false; theme: Default" 
style="font-size:12px;">&lt;interceptor-stack name="parentStack"&gt;
+</plain-text-body><h3 
id="Interceptors-InterceptorParameterOverridingInheritance">Interceptor 
Parameter Overriding Inheritance</h3><p>Parameters override are not inherited 
in interceptors, meaning that the last set of overridden parameters will be 
used. For example, if a stack overrides the parameter "defaultBlock" for the 
"postPrepareParameterFilter" interceptor as:</p><parameter 
ac:name="">xml</parameter><plain-text-body>&lt;interceptor-stack 
name="parentStack"&gt;
   &lt;interceptor-ref name="postPrepareParameterFilter"&gt;
     &lt;param name="defaultBlock"&gt;true&lt;/param&gt;
   &lt;/interceptor-ref&gt;
 &lt;/interceptor-stack&gt;
-</pre>
-</div></div><p>and an action overrides the "allowed" for 
"postPrepareParameterFilter":</p><div class="code panel pdl" 
style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<pre class="brush: xml; gutter: false; theme: Default" 
style="font-size:12px;">&lt;package name="child2" namespace="/child" 
extends="parentPackage"&gt;
+</plain-text-body><p>and an action overrides the "allowed" for 
"postPrepareParameterFilter":</p><parameter 
ac:name="">xml</parameter><plain-text-body>&lt;package name="child2" 
namespace="/child" extends="parentPackage"&gt;
   &lt;action name="list" class="SomeAction"&gt;
     &lt;interceptor-ref name="parentStack"&gt;
       &lt;param 
name="postPrepareParameterFilter.allowed"&gt;myObject.name&lt;/param&gt;
     &lt;/interceptor-ref&gt;
   &lt;/action&gt;
 &lt;/package&gt;
-</pre>
-</div></div><p>Then, only "allowed" will be overridden for the 
"postPrepareParameterFilter" interceptor in that action, the other params will 
be null.</p><h3 id="Interceptors-Lazyparameters">Lazy parameters</h3><div 
class="confluence-information-macro confluence-information-macro-note"><span 
class="aui-icon aui-icon-small aui-iconfont-warning 
confluence-information-macro-icon"></span><div 
class="confluence-information-macro-body"><p>This functionality was added in 
Struts 2.5.9</p></div></div><p>It is possible to define an interceptor with 
parameters evaluated during action invocation. In such case the interceptor 
must be marked with&#160;<code>WithLazyParams</code>&#160;interface. This must 
be developer's decision as interceptor must be aware of having those parameters 
set during invocation and not when the interceptor is created as it happens in 
normal way.</p><p>Params are evaluated as any other expression starting with 
from action as a top object.</p><div class="code panel pdl" s
 tyle="border-width: 1px;"><div class="codeContent panelContent pdl">
-<pre class="brush: xml; gutter: false; theme: Default" 
style="font-size:12px;">&lt;action name="LazyFoo" 
class="com.opensymphony.xwork2.SimpleAction"&gt;
+</plain-text-body><p>Then, only "allowed" will be overridden for the 
"postPrepareParameterFilter" interceptor in that action, the other params will 
be null.</p><h3 id="Interceptors-Lazyparameters">Lazy 
parameters</h3><rich-text-body><p>This functionality was added in Struts 
2.5.9</p></rich-text-body><p>It is possible to define an interceptor with 
parameters evaluated during action invocation. In such case the interceptor 
must be marked with&#160;<code>WithLazyParams</code>&#160;interface. This must 
be developer's decision as interceptor must be aware of having those parameters 
set during invocation and not when the interceptor is created as it happens in 
normal way.</p><p>Params are evaluated as any other expression starting with 
from action as a top object.</p><parameter 
ac:name="">xml</parameter><plain-text-body>&lt;action name="LazyFoo" 
class="com.opensymphony.xwork2.SimpleAction"&gt;
   &lt;result name="success"&gt;result.jsp&lt;/result&gt;
   &lt;interceptor-ref name="lazy"&gt;
     &lt;param name="foo"&gt;${bar}&lt;/param&gt;
   &lt;/interceptor-ref&gt;
-&lt;/action&gt;</pre>
-</div></div><div class="code panel pdl" style="border-width: 1px;"><div 
class="codeContent panelContent pdl">
-<pre class="brush: java; gutter: false; theme: Default" 
style="font-size:12px;">public class MockLazyInterceptor extends 
AbstractInterceptor implements WithLazyParams {
+&lt;/action&gt;</plain-text-body><parameter 
ac:name="">java</parameter><plain-text-body>public class MockLazyInterceptor 
extends AbstractInterceptor implements WithLazyParams {
 
     private String foo = "";
 
@@ -686,17 +219,13 @@ includeMethods takes precedence over excludeMethods.</p>
         ....
         return invocation.invoke();
     }
-}</pre>
-</div></div><p>Please be aware that order of interceptors can matter when want 
to access parameters passed via request as those parameters are set by&#160;<a 
shape="rect" href="parameters-interceptor.html">Parameters 
Interceptor</a>.</p><h3 id="Interceptors-OrderofInterceptorExecution">Order of 
Interceptor Execution</h3><p>Interceptors provide an excellent means to wrap 
before/after processing. The concept reduces code duplication (think 
AOP).</p><div class="code panel pdl" style="border-width: 1px;"><div 
class="codeContent panelContent pdl">
-<pre class="brush: xml; gutter: false; theme: Default" 
style="font-size:12px;">&lt;interceptor-stack name="xaStack"&gt;
+}</plain-text-body><p>Please be aware that order of interceptors can matter 
when want to access parameters passed via request as those parameters are set 
by&#160;<a shape="rect" href="parameters-interceptor.html">Parameters 
Interceptor</a>.</p><h3 id="Interceptors-OrderofInterceptorExecution">Order of 
Interceptor Execution</h3><p>Interceptors provide an excellent means to wrap 
before/after processing. The concept reduces code duplication (think 
AOP).</p><parameter 
ac:name="">xml</parameter><plain-text-body>&lt;interceptor-stack 
name="xaStack"&gt;
   &lt;interceptor-ref name="thisWillRunFirstInterceptor"/&gt;
   &lt;interceptor-ref name="thisWillRunNextInterceptor"/&gt;
   &lt;interceptor-ref name="followedByThisInterceptor"/&gt;
   &lt;interceptor-ref name="thisWillRunLastInterceptor"/&gt;
 &lt;/interceptor-stack&gt;
-</pre>
-</div></div><p><img class="emoticon emoticon-warning" 
src="https://cwiki.apache.org/confluence/s/en_GB/5997/6f42626d00e36f53fe51440403446ca61552e2a2.1/_/images/icons/emoticons/warning.png";
 data-emoticon-name="warning" alt="(warning)"> Note that some Interceptors will 
interrupt the stack/chain/flow ... so the order is very 
important.</p><p>Interceptors implementing 
<code>com.opensymphony.xwork2.interceptor.PreResultListener</code> will run 
after the Action executes but before the Result executes.</p><div class="code 
panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<pre class="brush: java; gutter: false; theme: Default" 
style="font-size:12px;">thisWillRunFirstInterceptor
+</plain-text-body><p><img class="emoticon emoticon-warning" 
src="https://cwiki.apache.org/confluence/s/en_GB/5997/6f42626d00e36f53fe51440403446ca61552e2a2.1/_/images/icons/emoticons/warning.png";
 data-emoticon-name="warning" alt="(warning)"> Note that some Interceptors will 
interrupt the stack/chain/flow ... so the order is very 
important.</p><p>Interceptors implementing 
<code>com.opensymphony.xwork2.interceptor.PreResultListener</code> will run 
after the Action executes but before the Result 
executes.</p><plain-text-body>thisWillRunFirstInterceptor
   thisWillRunNextInterceptor
     followedByThisInterceptor
       thisWillRunLastInterceptor
@@ -708,8 +237,7 @@ includeMethods takes precedence over excludeMethods.</p>
     followedByThisInterceptor
   thisWillRunNextInterceptor
 thisWillRunFirstInterceptor
-</pre>
-</div></div><h2 id="Interceptors-FAQ">FAQ</h2><ul><li><a shape="rect" 
href="how-do-we-configure-an-interceptor-to-be-used-with-every-action.html">How 
do we configure an Interceptor to be used with every Action</a>?</li><li><a 
shape="rect" href="how-do-we-get-access-to-the-session.html">How do we get 
access to the session</a>?</li><li><a shape="rect" 
href="how-can-we-access-the-httpservletrequest.html">How can we access the 
HttpServletRequest</a>?</li><li><a shape="rect" 
href="how-can-we-access-the-httpservletresponse.html">How can we access the 
HttpServletResponse</a>?</li><li><a shape="rect" 
href="how-can-we-access-request-parameters-passed-into-an-action.html">How can 
we access request parameters passed into an Action</a>?</li><li><a shape="rect" 
href="how-do-we-access-static-parameters-from-an-action.html">How do we access 
static parameters from an Action</a>?</li><li><a shape="rect" 
href="can-we-access-an-actions-result.html">Can we access an Action's 
Result</a>?</li><li><a shap
 e="rect" href="how-do-i-obtain-security-details-jaas.html">How do I obtain 
security details (JAAS)</a>?</li><li><a shape="rect" 
href="why-isnt-our-prepare-interceptor-being-executed.html">Why isn't our 
Prepare interceptor being executed</a>?</li><li><a shape="rect" 
href="how-do-we-upload-files.html">How do we upload files</a>?</li></ul><h2 
id="Interceptors-Next:">Next: <a shape="rect" 
href="writing-interceptors.html">Writing Interceptors</a></h2></div>
+</plain-text-body><h2 id="Interceptors-FAQ">FAQ</h2><ul><li><a shape="rect" 
href="how-do-we-configure-an-interceptor-to-be-used-with-every-action.html">How 
do we configure an Interceptor to be used with every Action</a>?</li><li><a 
shape="rect" href="how-do-we-get-access-to-the-session.html">How do we get 
access to the session</a>?</li><li><a shape="rect" 
href="how-can-we-access-the-httpservletrequest.html">How can we access the 
HttpServletRequest</a>?</li><li><a shape="rect" 
href="how-can-we-access-the-httpservletresponse.html">How can we access the 
HttpServletResponse</a>?</li><li><a shape="rect" 
href="how-can-we-access-request-parameters-passed-into-an-action.html">How can 
we access request parameters passed into an Action</a>?</li><li><a shape="rect" 
href="how-do-we-access-static-parameters-from-an-action.html">How do we access 
static parameters from an Action</a>?</li><li><a shape="rect" 
href="can-we-access-an-actions-result.html">Can we access an Action's 
Result</a>?</li><li><
 a shape="rect" href="how-do-i-obtain-security-details-jaas.html">How do I 
obtain security details (JAAS)</a>?</li><li><a shape="rect" 
href="why-isnt-our-prepare-interceptor-being-executed.html">Why isn't our 
Prepare interceptor being executed</a>?</li><li><a shape="rect" 
href="how-do-we-upload-files.html">How do we upload files</a>?</li></ul><h2 
id="Interceptors-Next:">Next: <a shape="rect" 
href="writing-interceptors.html">Writing Interceptors</a></h2></div>
         </div>
 
                     <div class="tabletitle">

Reply via email to