Class AnnotationParameterFilterInterceptor
java.lang.Object
com.opensymphony.xwork2.interceptor.AbstractInterceptor
com.opensymphony.xwork2.interceptor.annotations.AnnotationParameterFilterInterceptor
- All Implemented Interfaces:
ConditionalInterceptor
,Interceptor
,Serializable
Annotation based version of
ParameterFilterInterceptor
.
This Interceptor
must be placed in the stack before the ParametersInterceptor
When a parameter matches a field that is marked Blocked
then it is removed from
the parameter map.
If an Action
class is marked with BlockByDefault
then all parameters are
removed unless a field on the Action exists and is marked with Allowed
- Author:
- martin.gilday
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionintercept
(ActionInvocation invocation) Override to handle interceptionMethods inherited from class com.opensymphony.xwork2.interceptor.AbstractInterceptor
destroy, init, setDisabled, shouldIntercept
-
Constructor Details
-
AnnotationParameterFilterInterceptor
public AnnotationParameterFilterInterceptor()
-
-
Method Details
-
intercept
Description copied from class:AbstractInterceptor
Override to handle interception- Specified by:
intercept
in interfaceInterceptor
- Specified by:
intercept
in classAbstractInterceptor
- Parameters:
invocation
- the action invocation- Returns:
- the return code, either returned from
ActionInvocation.invoke()
, or from the interceptor itself. - Throws:
Exception
- any system-level error, as defined inAction.execute()
.
-