|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
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 |
DefaultActionProxyFactory.createActionInvocation(ActionProxy 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. |
ActionInvocation |
DefaultActionProxyFactory.createActionInvocation(ActionProxy actionProxy,
Map extraContext)
|
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. |
ActionInvocation |
DefaultActionProxyFactory.createActionInvocation(ActionProxy actionProxy,
Map extraContext,
boolean pushAction)
|
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 |
DefaultActionProxy.getInvocation()
|
ActionInvocation |
ActionProxy.getInvocation()
|
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 | |
---|---|
protected void |
StaticParametersInterceptor.after(ActionInvocation invocation,
String result)
|
protected void |
PrepareInterceptor.after(ActionInvocation dispatcher,
String result)
|
protected void |
ParametersInterceptor.after(ActionInvocation dispatcher,
String result)
|
protected void |
ModelDrivenInterceptor.after(ActionInvocation dispatcher,
String result)
|
protected void |
LoggingInterceptor.after(ActionInvocation invocation,
String result)
|
protected void |
ExternalReferencesInterceptor.after(ActionInvocation dispatcher,
String result)
|
protected void |
ConversionErrorInterceptor.after(ActionInvocation dispatcher,
String result)
|
protected void |
ChainingInterceptor.after(ActionInvocation invocation,
String result)
|
protected abstract void |
AroundInterceptor.after(ActionInvocation dispatcher,
String result)
Called after the invocation has been executed. |
protected void |
AliasInterceptor.after(ActionInvocation invocation,
String result)
|
protected void |
AbstractLifecycleInterceptor.after(ActionInvocation invocation,
String result)
Called after the Action and Result have been executed. |
protected boolean |
MethodFilterInterceptor.applyInterceptor(ActionInvocation invocation)
|
protected void |
StaticParametersInterceptor.before(ActionInvocation invocation)
|
protected void |
PrepareInterceptor.before(ActionInvocation invocation)
|
protected void |
ParametersInterceptor.before(ActionInvocation invocation)
|
protected void |
ModelDrivenInterceptor.before(ActionInvocation invocation)
|
protected void |
LoggingInterceptor.before(ActionInvocation invocation)
|
protected void |
ExternalReferencesInterceptor.before(ActionInvocation invocation)
|
protected void |
ConversionErrorInterceptor.before(ActionInvocation invocation)
|
protected void |
ChainingInterceptor.before(ActionInvocation invocation)
|
protected abstract void |
AroundInterceptor.before(ActionInvocation invocation)
Called before the invocation has been executed. |
protected void |
AliasInterceptor.before(ActionInvocation invocation)
|
protected void |
AbstractLifecycleInterceptor.before(ActionInvocation invocation)
Called before the rest of the ActionInvocation is forwarded to. |
void |
PreResultListener.beforeResult(ActionInvocation invocation,
String resultCode)
This callback method will be called after the Action execution and before the Result execution. |
void |
AbstractLifecycleInterceptor.beforeResult(ActionInvocation invocation,
String resultCode)
This callback method will be called after the Action execution and before the Result execution. |
protected abstract String |
MethodFilterInterceptor.doIntercept(ActionInvocation invocation)
Subclasses must override to implement the interceptor logic. |
protected String |
DefaultWorkflowInterceptor.doIntercept(ActionInvocation invocation)
|
protected Object |
ConversionErrorInterceptor.getOverrideExpr(ActionInvocation invocation,
Object value)
|
String |
TimerInterceptor.intercept(ActionInvocation invocation)
|
String |
ParameterFilterInterceptor.intercept(ActionInvocation invocation)
|
String |
MethodFilterInterceptor.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 |
I18nInterceptor.intercept(ActionInvocation invocation)
|
String |
ExceptionMappingInterceptor.intercept(ActionInvocation invocation)
|
String |
AroundInterceptor.intercept(ActionInvocation invocation)
|
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. |
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.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)
|
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.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 | |||||||||
PREV NEXT | FRAMES NO FRAMES |