Uses of Interface
com.opensymphony.xwork.ActionInvocation

Packages that use ActionInvocation
com.opensymphony.xwork   
com.opensymphony.xwork.config   
com.opensymphony.xwork.interceptor   
com.opensymphony.xwork.interceptor.component   
com.opensymphony.xwork.mock   
com.opensymphony.xwork.spring   
com.opensymphony.xwork.spring.interceptor   
com.opensymphony.xwork.validator   
 

Uses of ActionInvocation in com.opensymphony.xwork
 

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

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

Methods in com.opensymphony.xwork that return ActionInvocation
 ActionInvocation DefaultActionProxy.getInvocation()
           
 ActionInvocation ActionProxy.getInvocation()
           
abstract  ActionInvocation ActionProxyFactory.createActionInvocation(ActionProxy actionProxy, Map extraContext)
          Used by an ActionProxy or ActionProxyFactory to create an ActionInvocation to associate with an ActionProxy as part of creating an ActionProxy.
abstract  ActionInvocation ActionProxyFactory.createActionInvocation(ActionProxy actionProxy)
          Used by an ActionProxy or ActionProxyFactory to create an ActionInvocation to associate with an ActionProxy as part of creating an ActionProxy.
abstract  ActionInvocation ActionProxyFactory.createActionInvocation(ActionProxy actionProxy, Map extraContext, boolean pushAction)
          Used by an ActionProxy or ActionProxyFactory to create an ActionInvocation to associate with an ActionProxy as part of creating an ActionProxy.
 ActionInvocation DefaultActionProxyFactory.createActionInvocation(ActionProxy actionProxy)
           
 ActionInvocation DefaultActionProxyFactory.createActionInvocation(ActionProxy actionProxy, Map extraContext)
           
 ActionInvocation DefaultActionProxyFactory.createActionInvocation(ActionProxy actionProxy, Map extraContext, boolean pushAction)
           
 ActionInvocation ActionContext.getActionInvocation()
          Gets the action invocation (the execution state).
 

Methods in com.opensymphony.xwork with parameters of type ActionInvocation
 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 ActionChainResult.execute(ActionInvocation invocation)
           
 void ActionContext.setActionInvocation(ActionInvocation actionInvocation)
          Sets the action invocation (the execution state).
 

Uses of ActionInvocation in com.opensymphony.xwork.config
 

Methods in com.opensymphony.xwork.config with parameters of type ActionInvocation
 void ExternalReferenceResolver.resolveReferences(ActionInvocation invocation)
           
 

Uses of ActionInvocation in com.opensymphony.xwork.interceptor
 

Methods in com.opensymphony.xwork.interceptor with parameters of type ActionInvocation
 String I18nInterceptor.intercept(ActionInvocation invocation)
           
protected  void I18nInterceptor.saveLocale(ActionInvocation invocation, Locale locale)
          Save the given locale to the ActionInvocation.
protected  void ChainingInterceptor.after(ActionInvocation invocation, String result)
           
protected  void ChainingInterceptor.before(ActionInvocation invocation)
           
protected  String DefaultWorkflowInterceptor.doIntercept(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  Object ConversionErrorInterceptor.getOverrideExpr(ActionInvocation invocation, Object value)
           
protected  void ConversionErrorInterceptor.after(ActionInvocation dispatcher, String result)
           
protected  void ConversionErrorInterceptor.before(ActionInvocation invocation)
           
protected  void StaticParametersInterceptor.after(ActionInvocation invocation, String result)
           
protected  void StaticParametersInterceptor.before(ActionInvocation invocation)
           
 String AroundInterceptor.intercept(ActionInvocation invocation)
           
protected abstract  void AroundInterceptor.after(ActionInvocation dispatcher, String result)
          Called after the invocation has been executed.
protected abstract  void AroundInterceptor.before(ActionInvocation invocation)
          Called before the invocation has been executed.
 String ParameterFilterInterceptor.intercept(ActionInvocation invocation)
           
protected  void ExternalReferencesInterceptor.after(ActionInvocation dispatcher, String result)
           
protected  void ExternalReferencesInterceptor.before(ActionInvocation invocation)
           
protected  void ParametersInterceptor.after(ActionInvocation dispatcher, String result)
           
protected  void ParametersInterceptor.before(ActionInvocation invocation)
           
 String TimerInterceptor.intercept(ActionInvocation invocation)
           
protected  String TimerInterceptor.invokeUnderTiming(ActionInvocation invocation)
          Is called to invoke the action invocation and time the execution time.
 void AbstractLifecycleInterceptor.beforeResult(ActionInvocation invocation, String resultCode)
          This callback method will be called after the Action execution and before the Result execution.
 String AbstractLifecycleInterceptor.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.
protected  void AbstractLifecycleInterceptor.after(ActionInvocation invocation, String result)
          Called after the Action and Result have been executed.
protected  void AbstractLifecycleInterceptor.before(ActionInvocation invocation)
          Called before the rest of the ActionInvocation is forwarded to.
 String ExceptionMappingInterceptor.intercept(ActionInvocation invocation)
           
protected  void ExceptionMappingInterceptor.publishException(ActionInvocation invocation, ExceptionHolder exceptionHolder)
          Default implementation to handle ExceptionHolder publishing.
protected  void AliasInterceptor.before(ActionInvocation invocation)
           
protected  void AliasInterceptor.after(ActionInvocation invocation, String result)
           
protected  void LoggingInterceptor.after(ActionInvocation invocation, String result)
           
protected  void LoggingInterceptor.before(ActionInvocation invocation)
           
protected  void ModelDrivenInterceptor.after(ActionInvocation dispatcher, String result)
           
protected  void ModelDrivenInterceptor.before(ActionInvocation invocation)
           
 String MethodFilterInterceptor.intercept(ActionInvocation invocation)
           
protected  boolean MethodFilterInterceptor.applyInterceptor(ActionInvocation invocation)
           
protected abstract  String MethodFilterInterceptor.doIntercept(ActionInvocation invocation)
          Subclasses must override to implement the interceptor logic.
 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.
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  void PrepareInterceptor.after(ActionInvocation dispatcher, String result)
           
protected  void PrepareInterceptor.before(ActionInvocation invocation)
           
 

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

Methods in com.opensymphony.xwork.interceptor.component with parameters of type ActionInvocation
protected  void ComponentInterceptor.after(ActionInvocation dispatcher, String result)
          Deprecated.  
protected  void ComponentInterceptor.before(ActionInvocation dispatcher)
          Deprecated.  
 

Uses of ActionInvocation in com.opensymphony.xwork.mock
 

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

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

Methods in com.opensymphony.xwork.mock with parameters of type ActionInvocation
 void MockResult.execute(ActionInvocation invocation)
           
 void MockActionProxy.setInvocation(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.
 

Uses of ActionInvocation in com.opensymphony.xwork.spring
 

Methods in com.opensymphony.xwork.spring with parameters of type ActionInvocation
 void SpringExternalReferenceResolver.resolveReferences(ActionInvocation invocation)
           
 

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

Methods in com.opensymphony.xwork.spring.interceptor with parameters of type ActionInvocation
protected  void ActionAutowiringInterceptor.after(ActionInvocation dispatcher, String result)
           
protected  void ActionAutowiringInterceptor.before(ActionInvocation invocation)
          Looks for the ApplicationContext under the attribute that the Spring listener sets in the servlet context.
 

Uses of ActionInvocation in com.opensymphony.xwork.validator
 

Methods in com.opensymphony.xwork.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)
           
 


XWork Project Page