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

Packages that use Interceptor
com.opensymphony.xwork2 Main XWork interfaces and classes. 
com.opensymphony.xwork2.config.entities Configuration entity classes. 
com.opensymphony.xwork2.interceptor Interceptor classes. 
com.opensymphony.xwork2.interceptor.annotations Interceptor annotations. 
com.opensymphony.xwork2.mock XWork specific mock classes. 
com.opensymphony.xwork2.spring.interceptor Spring specific interceptor classes. 
com.opensymphony.xwork2.validator XWork validation subsystem. 
org.apache.struts2.impl   
org.apache.struts2.interceptor Web specific interceptor classes. 
org.apache.struts2.interceptor.debugging   
org.apache.struts2.interceptor.validation   
 

Uses of Interceptor in com.opensymphony.xwork2
 

Methods in com.opensymphony.xwork2 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.xwork2.config.entities
 

Fields in com.opensymphony.xwork2.config.entities declared as Interceptor
private  Interceptor InterceptorMapping.interceptor
           
 

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

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

Uses of Interceptor in com.opensymphony.xwork2.interceptor
 

Classes in com.opensymphony.xwork2.interceptor that implement Interceptor
 class AbstractInterceptor
          Provides default implementations of optional lifecycle methods
 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
          ConversionErrorInterceptor adds conversion errors from the ActionContext to the Action's field errors.
 class DefaultWorkflowInterceptor
          An interceptor that makes sure there are not validation errors before allowing the interceptor chain to continue.
 class ExceptionMappingInterceptor
          This interceptor forms the core functionality of the exception handling feature.
 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 start and end of the execution an action (in English-only, not internationalized).
 class MethodFilterInterceptor
          MethodFilterInterceptor is an abstract Interceptor used as a base class for interceptors that will filter execution based on method names 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
          The Parameter Filter Interceptor blocks parameters from getting to the rest of the stack or your action.
 class ParameterRemoverInterceptor
          This is a simple XWork 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 ScopedModelDrivenInterceptor
          An interceptor that enables scoped model-driven actions.
 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.xwork2.interceptor.annotations
 

Classes in com.opensymphony.xwork2.interceptor.annotations that implement Interceptor
 class AnnotationWorkflowInterceptor
           
 

Uses of Interceptor in com.opensymphony.xwork2.mock
 

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

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

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

Uses of Interceptor in com.opensymphony.xwork2.validator
 

Classes in com.opensymphony.xwork2.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).
 

Uses of Interceptor in org.apache.struts2.impl
 

Methods in org.apache.struts2.impl that return Interceptor
 Interceptor StrutsObjectFactory.buildInterceptor(InterceptorConfig interceptorConfig, Map refParams)
           
 

Uses of Interceptor in org.apache.struts2.interceptor
 

Classes in org.apache.struts2.interceptor that implement Interceptor
 class ActionMappingParametersInteceptor
          This interceptor sets all parameters from the action mapping, for this request, on the value stack.
 class CheckboxInterceptor
          Looks for a hidden identification field that specifies the original value of the checkbox.
 class ClearSessionInterceptor
          This interceptor clears the HttpSession.
 class CookieInterceptor
          The aim of this intercepter 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 MessageStoreInterceptor
          An interceptor to store a ValidationAware action's messages / errors and field errors into HTTP Session, such that it will be retrieveable at a later stage.
 class ProfilingActivationInterceptor
          Allows profiling to be enabled or disabled via request parameters, when devMode is enabled.
 class RolesInterceptor
          This interceptor ensures that the action will only be executed if the user has the correct role.
 class ScopeInterceptor
          This is designed to solve a few simple issues related to wizard-like functionality in Struts.
 class ServletConfigInterceptor
          An interceptor which sets action properties based on the interfaces an action implements.
 class StrutsConversionErrorInterceptor
          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).
 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.
 

Uses of Interceptor in org.apache.struts2.interceptor.debugging
 

Classes in org.apache.struts2.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 org.apache.struts2.interceptor.validation
 

Classes in org.apache.struts2.interceptor.validation that implement Interceptor
 class AnnotationValidationInterceptor
          Extends the xwork validation interceptor to also check for a @SkipValidation annotation, and if found, don't validate this action method
 class JSONValidationInterceptor
          Serializes validation and action errors into JSON.
 



Copyright © 2000-2008 Apache Software Foundation. All Rights Reserved.