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.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
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 ActionContext.getActionInvocation()
          Gets the action invocation (the execution state).
 ActionInvocation DefaultActionProxyFactory.createActionInvocation(ActionProxy actionProxy)
           
 ActionInvocation DefaultActionProxyFactory.createActionInvocation(ActionProxy actionProxy, Map extraContext)
           
 ActionInvocation DefaultActionProxyFactory.createActionInvocation(ActionProxy actionProxy, Map extraContext, boolean pushAction)
           
 ActionInvocation DefaultActionProxy.getInvocation()
           
 ActionInvocation ActionProxy.getInvocation()
           
 

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

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
protected  void ModelDrivenInterceptor.after(ActionInvocation dispatcher, String result)
           
protected  void ModelDrivenInterceptor.before(ActionInvocation invocation)
           
protected  Object ConversionErrorInterceptor.getOverrideExpr(ActionInvocation invocation, Object value)
           
protected  void ConversionErrorInterceptor.after(ActionInvocation dispatcher, String result)
           
protected  void ConversionErrorInterceptor.before(ActionInvocation invocation)
           
 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 ParametersInterceptor.after(ActionInvocation dispatcher, String result)
           
protected  void ParametersInterceptor.before(ActionInvocation invocation)
           
protected  void LoggingInterceptor.after(ActionInvocation invocation, String result)
           
protected  void LoggingInterceptor.before(ActionInvocation invocation)
           
protected  void ExternalReferencesInterceptor.after(ActionInvocation dispatcher, String result)
           
protected  void ExternalReferencesInterceptor.before(ActionInvocation invocation)
           
protected  void PrepareInterceptor.after(ActionInvocation dispatcher, String result)
           
protected  void PrepareInterceptor.before(ActionInvocation invocation)
           
 void PreResultListener.beforeResult(ActionInvocation invocation, String resultCode)
          This callback method will be called after the Action execution and before the Result execution.
 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.
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 DefaultWorkflowInterceptor.intercept(ActionInvocation invocation)
           
protected  void ChainingInterceptor.after(ActionInvocation invocation, String result)
           
protected  void ChainingInterceptor.before(ActionInvocation invocation)
           
 String TimerInterceptor.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.interceptor.component
 

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

Uses of ActionInvocation in com.opensymphony.xwork.validator
 

Methods in com.opensymphony.xwork.validator with parameters of type ActionInvocation
protected  void ValidationInterceptor.after(ActionInvocation dispatcher, String result)
          Does nothing in this implementation.
protected  void ValidationInterceptor.before(ActionInvocation invocation)
          Gets the current action and its context and calls ActionValidatorManager.validate(java.lang.Object, java.lang.String).
 


XWork Project Page