|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of ActionInvocation in com.opensymphony.webwork.dispatcher |
---|
Methods in com.opensymphony.webwork.dispatcher with parameters of type ActionInvocation | |
---|---|
protected void |
HttpHeaderResult.afterHttpHeadersPopulatedExecute(String finalLocation,
ActionInvocation invocation)
Sets the optional HTTP response status code and also re-sets HTTP headers after they've been optionally evaluated against the ValueStack. |
protected String |
WebWorkResultSupport.conditionalParse(String param,
ActionInvocation invocation)
|
protected void |
FlashResult.doExecute(String finalLocation,
ActionInvocation invocation)
A flash result, that save the current action into the http session before invoking super.doExecute(...) . |
protected void |
PlainTextResult.doExecute(String finalLocation,
ActionInvocation invocation)
|
void |
ServletDispatcherResult.doExecute(String finalLocation,
ActionInvocation invocation)
Dispatches to the given location. |
protected void |
ServletRedirectResult.doExecute(String finalLocation,
ActionInvocation invocation)
Redirects to the location specified by calling HttpServletResponse.sendRedirect(String) . |
protected void |
StreamResult.doExecute(String finalLocation,
ActionInvocation invocation)
|
void |
VelocityResult.doExecute(String finalLocation,
ActionInvocation invocation)
Creates a Velocity context from the action, loads a Velocity template and executes the template. |
protected abstract void |
WebWorkResultSupport.doExecute(String finalLocation,
ActionInvocation invocation)
Executes the result given a final location (jsp page, action, etc) and the action invocation (the state in which the action was executed). |
void |
ChartResult.execute(ActionInvocation invocation)
Executes the result. |
void |
ServletActionRedirectResult.execute(ActionInvocation invocation)
|
void |
WebWorkResultSupport.execute(ActionInvocation invocation)
Implementation of the execute method from the Result interface. |
protected org.apache.velocity.Template |
VelocityResult.getTemplate(OgnlValueStack stack,
org.apache.velocity.app.VelocityEngine velocity,
ActionInvocation invocation,
String location,
String encoding)
Given a value stack, a Velocity engine, and an action invocation, this method returns the appropriate Velocity template to render. |
Uses of ActionInvocation in com.opensymphony.webwork.dispatcher.json |
---|
Methods in com.opensymphony.webwork.dispatcher.json with parameters of type ActionInvocation | |
---|---|
void |
JSONResult.execute(ActionInvocation invocation)
Writes the string representation of JSONObject defined through JSONResult.getJSONObjectProperty()
to HttpServletResponse 's outputstream. |
protected JSONObject |
JSONResult.getJSONObject(ActionInvocation invocation)
Attempt to look up a JSONObject instance through the property
(JSONResult.getJSONObjectProperty() ) by looking up the property in WebWork's ValueStack. |
protected HttpServletResponse |
JSONResult.getServletResponse(ActionInvocation invocation)
Returns a HttpServletResponse by looking it up through WebWork's ActionContext Map. |
Uses of ActionInvocation in com.opensymphony.webwork.interceptor |
---|
Fields in com.opensymphony.webwork.interceptor declared as ActionInvocation | |
---|---|
protected ActionInvocation |
BackgroundProcess.invocation
|
Methods in com.opensymphony.webwork.interceptor that return ActionInvocation | |
---|---|
ActionInvocation |
BackgroundProcess.getInvocation()
Retrieves the action invocation. |
Methods in com.opensymphony.webwork.interceptor with parameters of type ActionInvocation | |
---|---|
protected void |
BooleanTweaker.after(ActionInvocation arg0,
String arg1)
Do nothing. |
protected void |
CookieInterceptor.after(ActionInvocation invocation,
String result)
No operation. |
protected void |
CreateSessionInterceptor.after(ActionInvocation dispatcher,
String result)
|
protected void |
FlashInterceptor.after(ActionInvocation invocation,
String result)
|
protected void |
MessageStoreInterceptor.after(ActionInvocation invocation,
String result)
Handle the storing of field errors / action messages / field errors, which is done after action invocation, and the operationMode is in 'STORE'. |
protected void |
ScopeInterceptor.after(ActionInvocation invocation,
String result)
|
protected void |
ServletConfigInterceptor.after(ActionInvocation dispatcher,
String result)
|
protected void |
SessionInvalidationInterceptor.after(ActionInvocation invocation,
String result)
Decides if this interceptor should invalidate the session or mark the session to be invalidated upon the next request that contains this interceptor in the stack. |
protected void |
BooleanTweaker.before(ActionInvocation ai)
Scan through the paramaters and find those with starts with BooleanTweaker.getPrefix() and set
their corresponding parameter with value from BooleanTweaker.getBooleanValue() . |
protected void |
CookieInterceptor.before(ActionInvocation invocation)
Inject cookies into action if they match the cookiesName
and cookiesValue configured. |
protected void |
CreateSessionInterceptor.before(ActionInvocation invocation)
|
protected void |
FlashInterceptor.before(ActionInvocation invocation)
|
protected void |
MessageStoreInterceptor.before(ActionInvocation invocation)
Handle the retrieving of field errors / action messages / field errors, which is done before action invocation, and the operationMode is 'RETRIEVE'. |
protected void |
ScopeInterceptor.before(ActionInvocation invocation)
|
protected void |
ServletConfigInterceptor.before(ActionInvocation invocation)
Sets action properties based on the interfaces an action implements. |
protected void |
SessionInvalidationInterceptor.before(ActionInvocation invocation)
Invalidate this session if it is marked to be invalidated from previous request. |
void |
ScopeInterceptor.beforeResult(ActionInvocation invocation,
String resultCode)
|
protected String |
TokenInterceptor.doIntercept(ActionInvocation invocation)
|
protected BackgroundProcess |
ExecuteAndWaitInterceptor.getNewBackgroundProcess(String name,
ActionInvocation actionInvocation,
int threadPriority)
|
protected Object |
WebWorkConversionErrorInterceptor.getOverrideExpr(ActionInvocation invocation,
Object value)
|
protected String |
MessageStoreInterceptor.getRequestOperationMode(ActionInvocation invocation)
Get the operationMode through request paramter, if allowRequestParameterSwitch
is 'true', else it simply returns 'NONE', meaning its neither in the 'STORE_MODE' nor
'RETRIEVE_MODE'. |
protected String |
TokenInterceptor.handleInvalidToken(ActionInvocation invocation)
Determines what to do if an invalida token is provided. |
protected String |
TokenSessionStoreInterceptor.handleInvalidToken(ActionInvocation invocation)
|
protected String |
TokenInterceptor.handleValidToken(ActionInvocation invocation)
Called when a valid token is found. |
protected String |
TokenSessionStoreInterceptor.handleValidToken(ActionInvocation invocation)
|
String |
ExecuteAndWaitInterceptor.intercept(ActionInvocation actionInvocation)
|
String |
FileUploadInterceptor.intercept(ActionInvocation invocation)
|
String |
MessageStoreInterceptor.intercept(ActionInvocation invocation)
Intercept the incomming request and store messages into HttpSession / retrieve messages from HttpSession / do nothing depending on the mode this interceptor is operating in. |
String |
ScopeInterceptor.intercept(ActionInvocation invocation)
|
Constructors in com.opensymphony.webwork.interceptor with parameters of type ActionInvocation | |
---|---|
BackgroundProcess(String threadName,
ActionInvocation invocation,
int threadPriority)
|
Uses of ActionInvocation in com.opensymphony.webwork.interceptor.debugging |
---|
Methods in com.opensymphony.webwork.interceptor.debugging with parameters of type ActionInvocation | |
---|---|
String |
DebuggingInterceptor.intercept(ActionInvocation inv)
|
Uses of ActionInvocation in com.opensymphony.webwork.pico |
---|
Classes in com.opensymphony.webwork.pico that implement ActionInvocation | |
---|---|
class |
PicoActionInvocation
Deprecated. Use DefaultActionInvocation |
Methods in com.opensymphony.webwork.pico that return ActionInvocation | |
---|---|
ActionInvocation |
PicoActionProxyFactory.createActionInvocation(ActionProxy actionProxy)
Deprecated. |
ActionInvocation |
PicoActionProxyFactory.createActionInvocation(ActionProxy actionProxy,
Map extraContext)
Deprecated. |
ActionInvocation |
PicoActionProxyFactory.createActionInvocation(ActionProxy actionProxy,
Map extraContext,
boolean pushAction)
Deprecated. |
Uses of ActionInvocation in com.opensymphony.webwork.portlet.result |
---|
Methods in com.opensymphony.webwork.portlet.result with parameters of type ActionInvocation | |
---|---|
void |
PortletResult.doExecute(String finalLocation,
ActionInvocation actionInvocation)
Execute the result. |
void |
PortletVelocityResult.doExecute(String location,
ActionInvocation invocation)
|
protected void |
PortletResult.executeActionResult(String finalLocation,
ActionInvocation invocation)
Executes the action result. |
void |
PortletVelocityResult.executeRenderResult(String finalLocation,
ActionInvocation invocation)
Creates a Velocity context from the action, loads a Velocity template and executes the template. |
protected org.apache.velocity.Template |
PortletVelocityResult.getTemplate(OgnlValueStack stack,
org.apache.velocity.app.VelocityEngine velocity,
ActionInvocation invocation,
String location,
String encoding)
Given a value stack, a Velocity engine, and an action invocation, this method returns the appropriate Velocity template to render. |
Uses of ActionInvocation in com.opensymphony.webwork.sitemesh |
---|
Methods in com.opensymphony.webwork.sitemesh with parameters of type ActionInvocation | |
---|---|
protected Locale |
FreeMarkerPageFilter.getLocale(ActionInvocation invocation,
freemarker.template.Configuration configuration)
Returns the locale used for the Configuration.getTemplate(String, Locale) call. |
Uses of ActionInvocation in com.opensymphony.webwork.spring.interceptor |
---|
Methods in com.opensymphony.webwork.spring.interceptor with parameters of type ActionInvocation | |
---|---|
protected void |
SessionContextAutowiringInterceptor.after(ActionInvocation dispatcher,
String result)
|
protected void |
SessionContextAutowiringInterceptor.before(ActionInvocation invocation)
|
Uses of ActionInvocation in com.opensymphony.webwork.util |
---|
Methods in com.opensymphony.webwork.util that return ActionInvocation | |
---|---|
static ActionInvocation |
InvocationSessionStore.loadInvocation(String key,
String token)
Checks the Map in the Session for the key and the token. |
Methods in com.opensymphony.webwork.util with parameters of type ActionInvocation | |
---|---|
static void |
InvocationSessionStore.storeInvocation(String key,
String token,
ActionInvocation invocation)
Stores the DefaultActionInvocation and ActionContext into the Session using the provided key for loading later using InvocationSessionStore.loadInvocation(java.lang.String, java.lang.String) |
Uses of ActionInvocation in com.opensymphony.webwork.validators |
---|
Classes in com.opensymphony.webwork.validators that implement ActionInvocation | |
---|---|
static class |
DWRValidator.ValidatorActionInvocation
|
Uses of ActionInvocation in com.opensymphony.webwork.views |
---|
Methods in com.opensymphony.webwork.views with parameters of type ActionInvocation | |
---|---|
protected abstract void |
AbstractHttpHeaderPopulatingResult.afterHttpHeadersPopulatedExecute(String finalLocation,
ActionInvocation invocation)
This method is meant for subclass to override, it is called after the http headers have been set into the current http response. |
void |
AbstractHttpHeaderPopulatingResult.doExecute(String finalLocation,
ActionInvocation invocation)
Sets the optional HTTP response status code and also re-sets HTTP headers after they've been optionally evaluated against the ValueStack. |
Uses of ActionInvocation in com.opensymphony.webwork.views.freemarker |
---|
Fields in com.opensymphony.webwork.views.freemarker declared as ActionInvocation | |
---|---|
protected ActionInvocation |
FreemarkerResult.invocation
|
protected ActionInvocation |
PortletFreemarkerResult.invocation
|
Methods in com.opensymphony.webwork.views.freemarker with parameters of type ActionInvocation | |
---|---|
void |
FreemarkerResult.doExecute(String location,
ActionInvocation invocation)
Execute this result, using the specified template location. |
void |
PortletFreemarkerResult.doExecute(String location,
ActionInvocation invocation)
Execute this result, using the specified template location. |
Uses of ActionInvocation in com.opensymphony.webwork.views.jasperreports |
---|
Methods in com.opensymphony.webwork.views.jasperreports with parameters of type ActionInvocation | |
---|---|
protected void |
JasperReportsResult.afterHttpHeadersPopulatedExecute(String finalLocation,
ActionInvocation invocation)
|
Uses of ActionInvocation in com.opensymphony.webwork.views.jsp.ui |
---|
Methods in com.opensymphony.webwork.views.jsp.ui with parameters of type ActionInvocation | |
---|---|
void |
RichtexteditorCreateFolderResult.execute(ActionInvocation invocation)
Write the result (in xml form) to the response stream corresponding to the Rich Text Editor's 'CreateFolder' command |
void |
RichtexteditorFileUploadResult.execute(ActionInvocation invocation)
Write the result (in javascript form) to the response stream corresponding to the Rich Text Editor's 'FileUpload' command. |
void |
RichtexteditorGetFoldersAndFilesResult.execute(ActionInvocation invocation)
Write the result (in xml form) to the response stream corresponding to the Rich Text Editor's 'GetFoldersAndFiles' command. |
void |
RichtexteditorGetFoldersResult.execute(ActionInvocation invocation)
Write the response (in xml form) to the response stream corresponding to the Rich Text Editor's 'GetFolders' command. |
protected String |
AbstractRichtexteditorResult.getCommand(ActionInvocation invocation)
Get the command send by the Rich Text Editor. |
protected String |
AbstractRichtexteditorResult.getFolderPath(ActionInvocation invocation)
Get the folder path send by the Rich Text Editor. |
protected String |
AbstractRichtexteditorResult.getServerPath(ActionInvocation invocation)
Get the server path calculated from AbstractRichtexteditoConnector or its decendant through AbstractRichtexteditorConnector#calculate#calculateServerPath(String, String String) |
protected String |
AbstractRichtexteditorResult.getType(ActionInvocation invocation)
Get the type send by the Rich Text Editor. |
protected AbstractRichtexteditorConnector.CreateFolderResult |
AbstractRichtexteditorResult.richtexteditorCreateFolderResult(ActionInvocation invocation)
Get the CreateFolderResult computed from AbstractRichtexteditorConnector or its
decendant through AbstractRichtexteditorConnector#createFolder(String, String, String). |
protected AbstractRichtexteditorConnector.FileUploadResult |
AbstractRichtexteditorResult.richtexteditorFileUploadResult(ActionInvocation invocation)
Get the FileUploadResult computed from AbstractRichtexteditorConnector or its
decendant through AbstractRichtexteditorConnector#fileUpload(String, String, String, String, File). |
protected AbstractRichtexteditorConnector.Folder[] |
AbstractRichtexteditorResult.richtexteditorFolders(ActionInvocation invocation)
Get the Folder[] computed from AbstractRichtexteditorConnector or its
decendant through AbstractRichtexteditorConnector#getFolders(String, String). |
protected AbstractRichtexteditorConnector.FoldersAndFiles |
AbstractRichtexteditorResult.richtexteditorFoldersAndFiles(ActionInvocation invocation)
Get the FoldersAndFiles computed from AbstractRichtexteditorConnector or its
decendant through AbstractRichtexteditorConnector#getFoldersAndFiles(String, String). |
Uses of ActionInvocation in com.opensymphony.webwork.views.sitemesh |
---|
Methods in com.opensymphony.webwork.views.sitemesh with parameters of type ActionInvocation | |
---|---|
protected Locale |
ApplyDecoratorBean.deduceLocale(ActionInvocation invocation,
freemarker.template.Configuration configuration)
Attempt to deduce the Locale, based on invocation and
Freemarker's configuration . |
Uses of ActionInvocation in com.opensymphony.webwork.views.tiles |
---|
Fields in com.opensymphony.webwork.views.tiles declared as ActionInvocation | |
---|---|
protected ActionInvocation |
TilesResult.invocation
|
Methods in com.opensymphony.webwork.views.tiles with parameters of type ActionInvocation | |
---|---|
void |
TilesResult.doExecute(String location,
ActionInvocation invocation)
Dispatches to the given location. |
Uses of ActionInvocation in com.opensymphony.webwork.views.xslt |
---|
Methods in com.opensymphony.webwork.views.xslt with parameters of type ActionInvocation | |
---|---|
void |
XSLTResult.execute(ActionInvocation invocation)
|
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)
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)
|
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)
|
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,
Map extraContext,
boolean pushAction)
|
ActionInvocation |
ActionContext.getActionInvocation()
Gets the action invocation (the execution state). |
ActionInvocation |
ActionProxy.getInvocation()
|
ActionInvocation |
DefaultActionProxy.getInvocation()
|
Methods in com.opensymphony.xwork 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.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 |
ParameterRemoverInterceptor.after(ActionInvocation dispatcher,
String result)
Empty implementation. |
protected void |
AbstractLifecycleInterceptor.after(ActionInvocation invocation,
String result)
Called after the Action and Result have been executed. |
protected void |
AliasInterceptor.after(ActionInvocation invocation,
String result)
|
protected abstract void |
AroundInterceptor.after(ActionInvocation dispatcher,
String result)
Called after the invocation has been executed. |
protected void |
ChainingInterceptor.after(ActionInvocation invocation,
String result)
No operation, does nothing |
protected void |
ConversionErrorInterceptor.after(ActionInvocation dispatcher,
String result)
|
protected void |
ExternalReferencesInterceptor.after(ActionInvocation dispatcher,
String result)
|
protected void |
LoggingInterceptor.after(ActionInvocation invocation,
String result)
|
protected void |
ModelDrivenInterceptor.after(ActionInvocation dispatcher,
String result)
|
protected void |
ParametersInterceptor.after(ActionInvocation dispatcher,
String result)
|
protected void |
PrepareInterceptor.after(ActionInvocation dispatcher,
String result)
|
protected void |
StaticParametersInterceptor.after(ActionInvocation invocation,
String result)
|
protected boolean |
MethodFilterInterceptor.applyInterceptor(ActionInvocation invocation)
|
protected void |
ParameterRemoverInterceptor.before(ActionInvocation invocation)
Decide if the parameter should be removed from the parameter map based on paramNames and paramValues . |
protected void |
AbstractLifecycleInterceptor.before(ActionInvocation invocation)
Called before the rest of the ActionInvocation is forwarded to. |
protected void |
AliasInterceptor.before(ActionInvocation invocation)
|
protected abstract void |
AroundInterceptor.before(ActionInvocation invocation)
Called before the invocation has been executed. |
protected void |
ChainingInterceptor.before(ActionInvocation invocation)
Copy value of method invocation excluded and included by ChainingInterceptor.includes ChainingInterceptor.excludes separately
into ValueStack's CompoundRoot. |
protected void |
ConversionErrorInterceptor.before(ActionInvocation invocation)
|
protected void |
ExternalReferencesInterceptor.before(ActionInvocation invocation)
|
protected void |
LoggingInterceptor.before(ActionInvocation invocation)
|
protected void |
ModelDrivenInterceptor.before(ActionInvocation invocation)
|
protected void |
ParametersInterceptor.before(ActionInvocation invocation)
|
protected void |
PrepareInterceptor.before(ActionInvocation invocation)
|
protected void |
StaticParametersInterceptor.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. |
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)
|
protected abstract String |
MethodFilterInterceptor.doIntercept(ActionInvocation invocation)
Subclasses must override to implement the interceptor logic. |
protected Object |
ConversionErrorInterceptor.getOverrideExpr(ActionInvocation invocation,
Object value)
|
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. |
String |
AroundInterceptor.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 |
MethodFilterInterceptor.intercept(ActionInvocation invocation)
|
String |
ParameterFilterInterceptor.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.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 AbstractActionValidatorManager.validate(Object, String) . |
protected String |
ValidationInterceptor.doIntercept(ActionInvocation invocation)
|
|
WebWork Project Page | |||||||||
PREV NEXT | FRAMES NO FRAMES |