com.opensymphony.xwork.interceptor
Class ExternalReferencesInterceptor
java.lang.Object
com.opensymphony.xwork.interceptor.AroundInterceptor
com.opensymphony.xwork.interceptor.ExternalReferencesInterceptor
- All Implemented Interfaces:
- Interceptor, java.io.Serializable
public class ExternalReferencesInterceptor
- extends AroundInterceptor
TODO: Give a description of the Interceptor.
TODO: Describe the paramters for this Interceptor.
TODO: Discuss some possible extension of the Interceptor.
<!-- TODO: Describe how the Interceptor reference will effect execution -->
<action name="someAction" class="com.examples.SomeAction">
TODO: fill in the interceptor reference.
<interceptor-ref name=""/>
<result name="success">good_result.ftl</result>
</action>
- Author:
- Ross
Resolves external references using the
ExternalReferenceResolver
configured on the package
Reference Resolution is encapsulated in an interceptor so that the user can configure when references should
be resloved
- See Also:
- Serialized Form
Method Summary |
protected void |
after(ActionInvocation dispatcher,
java.lang.String result)
Called after the invocation has been executed. |
protected void |
before(ActionInvocation invocation)
Called before the invocation has been executed. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
ExternalReferencesInterceptor
public ExternalReferencesInterceptor()
after
protected void after(ActionInvocation dispatcher,
java.lang.String result)
throws java.lang.Exception
- Description copied from class:
AroundInterceptor
- Called after the invocation has been executed.
- Specified by:
after
in class AroundInterceptor
result
- the result value returned by the invocation
- Throws:
java.lang.Exception
before
protected void before(ActionInvocation invocation)
throws java.lang.Exception
- Description copied from class:
AroundInterceptor
- Called before the invocation has been executed.
- Specified by:
before
in class AroundInterceptor
- Throws:
java.lang.Exception