Uses of Interface
com.opensymphony.xwork2.ActionInvocation

Packages that use ActionInvocation
com.opensymphony.xwork2 Main Xwork interfaces and 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. 
 

Uses of ActionInvocation in com.opensymphony.xwork2
 

Classes in com.opensymphony.xwork2 that implement ActionInvocation
 class DefaultActionInvocation
          The Default ActionInvocation implementation
 

Fields in com.opensymphony.xwork2 declared as ActionInvocation
protected  ActionInvocation DefaultActionProxy.invocation
           
 

Methods in com.opensymphony.xwork2 that return ActionInvocation
 ActionInvocation ActionContext.getActionInvocation()
          Gets the action invocation (the execution state).
 ActionInvocation ActionProxy.getInvocation()
           
 ActionInvocation DefaultActionProxy.getInvocation()
           
 

Methods in com.opensymphony.xwork2 with parameters of type ActionInvocation
 void ActionChainResult.execute(ActionInvocation invocation)
           
 void Result.execute(ActionInvocation invocation)
          Represents a generic interface for all action execution results, whether that be displaying a webpage, generating an email, sending a JMS message, etc.
 void ActionContext.setActionInvocation(ActionInvocation actionInvocation)
          Sets the action invocation (the execution state).
 

Uses of ActionInvocation in com.opensymphony.xwork2.interceptor
 

Methods in com.opensymphony.xwork2.interceptor with parameters of type ActionInvocation
protected  boolean MethodFilterInterceptor.applyInterceptor(ActionInvocation invocation)
           
 void PreResultListener.beforeResult(ActionInvocation invocation, String resultCode)
          This callback method will be called after the Action execution and before the Result execution.
protected  String DefaultWorkflowInterceptor.doIntercept(ActionInvocation invocation)
          Intercept ActionInvocation and returns a inputResultName when action / field errors is found registered.
protected abstract  String MethodFilterInterceptor.doIntercept(ActionInvocation invocation)
          Subclasses must override to implement the interceptor logic.
 String ParametersInterceptor.doIntercept(ActionInvocation invocation)
           
 String PrepareInterceptor.doIntercept(ActionInvocation invocation)
           
protected  Object ConversionErrorInterceptor.getOverrideExpr(ActionInvocation invocation, Object value)
           
abstract  String AbstractInterceptor.intercept(ActionInvocation invocation)
          Override to handle interception
 String AliasInterceptor.intercept(ActionInvocation invocation)
           
 String ChainingInterceptor.intercept(ActionInvocation invocation)
           
 String ConversionErrorInterceptor.intercept(ActionInvocation invocation)
           
 String ExceptionMappingInterceptor.intercept(ActionInvocation invocation)
           
 String I18nInterceptor.intercept(ActionInvocation invocation)
           
 String Interceptor.intercept(ActionInvocation invocation)
          Allows the Interceptor to do some processing on the request before and/or after the rest of the processing of the request by the ActionInvocation or to short-circuit the processing and just return a String return code.
 String LoggingInterceptor.intercept(ActionInvocation invocation)
           
 String MethodFilterInterceptor.intercept(ActionInvocation invocation)
           
 String ModelDrivenInterceptor.intercept(ActionInvocation invocation)
           
 String ParameterFilterInterceptor.intercept(ActionInvocation invocation)
           
 String ParameterRemoverInterceptor.intercept(ActionInvocation invocation)
          Decide if the parameter should be removed from the parameter map based on paramNames and paramValues.
 String ScopedModelDrivenInterceptor.intercept(ActionInvocation invocation)
           
 String StaticParametersInterceptor.intercept(ActionInvocation invocation)
           
 String TimerInterceptor.intercept(ActionInvocation invocation)
           
static void PrefixMethodInvocationUtil.invokePrefixMethod(ActionInvocation actionInvocation, String[] prefixes)
          This method will prefix actionInvocation's ActionProxy's method with prefixes before invoking the prefixed method.
protected  String TimerInterceptor.invokeUnderTiming(ActionInvocation invocation)
          Is called to invoke the action invocation and time the execution time.
protected  void ExceptionMappingInterceptor.publishException(ActionInvocation invocation, ExceptionHolder exceptionHolder)
          Default implementation to handle ExceptionHolder publishing.
protected  void I18nInterceptor.saveLocale(ActionInvocation invocation, Locale locale)
          Save the given locale to the ActionInvocation.
 

Uses of ActionInvocation in com.opensymphony.xwork2.interceptor.annotations
 

Methods in com.opensymphony.xwork2.interceptor.annotations with parameters of type ActionInvocation
 void AnnotationWorkflowInterceptor.beforeResult(ActionInvocation invocation, String resultCode)
          Invokes any @BeforeResult annotated methods
 String AnnotationWorkflowInterceptor.intercept(ActionInvocation invocation)
          Discovers annotated methods on the action and calls them according to the workflow
 

Uses of ActionInvocation in com.opensymphony.xwork2.mock
 

Classes in com.opensymphony.xwork2.mock that implement ActionInvocation
 class MockActionInvocation
          Mock for an ActionInvocation.
 

Methods in com.opensymphony.xwork2.mock that return ActionInvocation
 ActionInvocation MockActionProxy.getInvocation()
           
 

Methods in com.opensymphony.xwork2.mock with parameters of type ActionInvocation
 void MockResult.execute(ActionInvocation invocation)
           
 String MockInterceptor.intercept(ActionInvocation invocation)
          Allows the Interceptor to do some processing on the request before and/or after the rest of the processing of the request by the DefaultActionInvocation or to short-circuit the processing and just return a String return code.
 void MockActionProxy.setInvocation(ActionInvocation invocation)
           
 

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

Methods in com.opensymphony.xwork2.spring.interceptor with parameters of type ActionInvocation
 String ActionAutowiringInterceptor.intercept(ActionInvocation invocation)
          Looks for the ApplicationContext under the attribute that the Spring listener sets in the servlet context.
 

Uses of ActionInvocation in com.opensymphony.xwork2.validator
 

Methods in com.opensymphony.xwork2.validator with parameters of type ActionInvocation
protected  void ValidationInterceptor.doBeforeInvocation(ActionInvocation invocation)
          Gets the current action and its context and calls DefaultActionValidatorManager.validate(Object, String).
protected  String ValidationInterceptor.doIntercept(ActionInvocation invocation)
           
 



Copyright © 2007 OpenSymphony. All Rights Reserved.