Uses of Class
com.opensymphony.xwork.interceptor.AroundInterceptor

Packages that use AroundInterceptor
com.opensymphony.xwork.interceptor   
com.opensymphony.xwork.interceptor.component   
com.opensymphony.xwork.spring.interceptor   
com.opensymphony.xwork.validator   
 

Uses of AroundInterceptor in com.opensymphony.xwork.interceptor
 

Subclasses of AroundInterceptor in com.opensymphony.xwork.interceptor
 class AliasInterceptor
          The aim of this Interceptor is to alias a named parameter to a different named parameter.
 class ChainingInterceptor
          An interceptor that copies all the properties of every object in the value stack to the currently executing object, except for any object that implements Unchainable.
 class ConversionErrorInterceptor
          This interceptor adds any error found in the ActionContext's conversionErrors map as a field error (provided that the action implements ValidationAware).
 class ExternalReferencesInterceptor
          TODO: Give a description of the Interceptor.
 class LoggingInterceptor
          This interceptor logs the the start and end of the execution an action (in English-only, not internationalized).
 class ModelDrivenInterceptor
          Watches for ModelDriven actions and adds the action's model on to the value stack.
 class ParametersInterceptor
          This interceptor gets all parameters from ActionContext.getParameters() and sets them on the value stack by calling OgnlValueStack.setValue(String, Object), typically resulting in the values submitted in a form request being applied to an action in the value stack.
 class PrepareInterceptor
          This interceptor calls prepare() on actions which implement Preparable.
 class StaticParametersInterceptor
          This interceptor populates the action with the static parameters defined in the action configuration.
 

Uses of AroundInterceptor in com.opensymphony.xwork.interceptor.component
 

Subclasses of AroundInterceptor in com.opensymphony.xwork.interceptor.component
 class ComponentInterceptor
          Deprecated. WebWork's IoC has been deprecated, please use an alternative such as Spring.
 

Uses of AroundInterceptor in com.opensymphony.xwork.spring.interceptor
 

Subclasses of AroundInterceptor in com.opensymphony.xwork.spring.interceptor
 class ActionAutowiringInterceptor
          TODO: Give a description of the Interceptor.
 

Uses of AroundInterceptor in com.opensymphony.xwork.validator
 

Subclasses of AroundInterceptor in com.opensymphony.xwork.validator
 class ValidationInterceptor
          This interceptor runs the action through the standard validation framework, which in turn checks the action against any validation rules (found in files such as ActionClass-validation.xml) and adds field-level and action-level error messages (provided that the action implements ValidationAware).
 


XWork Project Page