Uses of Interface
com.opensymphony.xwork.interceptor.Interceptor

Packages that use Interceptor
com.opensymphony.webwork.interceptor Web specific interceptor classes. 
com.opensymphony.webwork.interceptor.debugging   
com.opensymphony.webwork.pico   
com.opensymphony.webwork.spring.interceptor   
com.opensymphony.xwork   
com.opensymphony.xwork.config.entities   
com.opensymphony.xwork.interceptor   
com.opensymphony.xwork.interceptor.component   
com.opensymphony.xwork.mock   
com.opensymphony.xwork.spring.interceptor   
com.opensymphony.xwork.validator   
 

Uses of Interceptor in com.opensymphony.webwork.interceptor
 

Classes in com.opensymphony.webwork.interceptor that implement Interceptor
 class BooleanTweaker
          Interceptor tweaking boolean parameters.
 class CookieInterceptor
          The aim of this interceptor is to set values in the stack/action based on cookie name/value of interest.
 class CreateSessionInterceptor
          This interceptor creates the HttpSession.
 class ExecuteAndWaitInterceptor
          The ExecuteAndWaitInterceptor is great for running long-lived actions in the background while showing the user a nice progress meter.
 class FileUploadInterceptor
          Interceptor that is based off of MultiPartRequestWrapper, which is automatically applied for any request that includes a file.
 class FlashInterceptor
          Flash interceptor (FlashInterceptor) possibly with FlashResult allows current action to be available even after a redirect.
 class MessageStoreInterceptor
          An interceptor to store ValidationAware action's messages / errors and field errors into Http Session, such that it will be retrieveable at a later stage.
 class ScopeInterceptor
          This is designed to solve a few simple issues related to wizard-like functionality in WebWork.
 class ServletConfigInterceptor
          An interceptor which sets action properties based on the interfaces an action implements.
 class SessionInvalidationInterceptor
          This interceptor invalidates http session based on the type of operation it is in.
 class TokenInterceptor
          Ensures that only one request per token is processed.
 class TokenSessionStoreInterceptor
          This interceptor builds off of the TokenInterceptor, providing advanced logic for handling invalid tokens.
 class WebWorkConversionErrorInterceptor
          This interceptor extends ConversionErrorInterceptor but only adds conversion errors from the ActionContext to the field errors of the action if the field value is not null, "", or {""} (a size 1 String array with only an empty String).
 

Uses of Interceptor in com.opensymphony.webwork.interceptor.debugging
 

Classes in com.opensymphony.webwork.interceptor.debugging that implement Interceptor
 class DebuggingInterceptor
          Provides several different debugging screens to provide insight into the data behind the page.
 

Uses of Interceptor in com.opensymphony.webwork.pico
 

Methods in com.opensymphony.webwork.pico that return Interceptor
 Interceptor PicoObjectFactory.buildInterceptor(InterceptorConfig interceptorConfig, Map interceptorRefParams)
           
 

Uses of Interceptor in com.opensymphony.webwork.spring.interceptor
 

Classes in com.opensymphony.webwork.spring.interceptor that implement Interceptor
 class SessionContextAutowiringInterceptor
          TODO: Give a description of the Interceptor.
 

Uses of Interceptor in com.opensymphony.xwork
 

Methods in com.opensymphony.xwork that return Interceptor
 Interceptor ObjectFactory.buildInterceptor(InterceptorConfig interceptorConfig, Map interceptorRefParams)
          Builds an Interceptor from the InterceptorConfig and the Map of parameters from the interceptor reference.
 

Uses of Interceptor in com.opensymphony.xwork.config.entities
 

Methods in com.opensymphony.xwork.config.entities that return Interceptor
 Interceptor InterceptorMapping.getInterceptor()
           
 

Methods in com.opensymphony.xwork.config.entities with parameters of type Interceptor
 void InterceptorMapping.setInterceptor(Interceptor interceptor)
           
 

Constructors in com.opensymphony.xwork.config.entities with parameters of type Interceptor
InterceptorMapping(String name, Interceptor interceptor)
           
 

Uses of Interceptor in com.opensymphony.xwork.interceptor
 

Classes in com.opensymphony.xwork.interceptor that implement Interceptor
 class AbstractLifecycleInterceptor
          AbstractLifecycleInterceptor is a convenience interceptor that is like an
 class AliasInterceptor
          The aim of this Interceptor is to alias a named parameter to a different named parameter.
 class AroundInterceptor
          An abstract interceptor that provides simple access to before/after callouts.
 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 DefaultWorkflowInterceptor
          An interceptor that does some basic validation workflow before allowing the interceptor chain to continue.
 class ExceptionMappingInterceptor
          This interceptor forms the core functionality of the exception handling feature.
 class ExternalReferencesInterceptor
          TODO: Give a description of the Interceptor.
 class I18nInterceptor
          An interceptor that handles setting the locale specified in a session as the locale for the current action request.
 class LoggingInterceptor
          This interceptor logs the the start and end of the execution an action (in English-only, not internationalized).
 class MethodFilterInterceptor
          An abstract Interceptor that is applied to selectively according to specified included/excluded method lists.
 class ModelDrivenInterceptor
          Watches for ModelDriven actions and adds the action's model on to the value stack.
 class ParameterFilterInterceptor
           
 class ParameterRemoverInterceptor
          This is a simple WebWork interceptor that allows parameters (matching one of the paramNames attribute csv value) to be removed from the parameter map if they match a certain value (matching one of the paramValues attribute csv value), before they are set on the action.
 class ParametersInterceptor
          This interceptor sets all parameters on 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.
 class TimerInterceptor
          This interceptor logs the amount of time in milliseconds.
 

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

Classes in com.opensymphony.xwork.interceptor.component that implement Interceptor
 class ComponentInterceptor
          Deprecated. WebWork's IoC has been deprecated, please use an alternative such as Spring.
 

Uses of Interceptor in com.opensymphony.xwork.mock
 

Classes in com.opensymphony.xwork.mock that implement Interceptor
 class MockInterceptor
          Mock for an Interceptor.
 

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

Classes in com.opensymphony.xwork.spring.interceptor that implement Interceptor
 class ActionAutowiringInterceptor
          TODO: Give a description of the Interceptor.
 

Uses of Interceptor in com.opensymphony.xwork.validator
 

Classes in com.opensymphony.xwork.validator that implement Interceptor
 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).
 


WebWork Project Page