|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
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. |
org.apache.struts2.config | Classes for Struts configuration and property handling. |
org.apache.struts2.dispatcher | Classes for action dispatching in Struts (the Controller part of MVC). |
org.apache.struts2.interceptor | Web specific interceptor classes. |
org.apache.struts2.interceptor.debugging | |
org.apache.struts2.interceptor.validation | |
org.apache.struts2.portlet.interceptor | |
org.apache.struts2.portlet.result | |
org.apache.struts2.util | Miscellaneous helper classes. |
org.apache.struts2.validators | |
org.apache.struts2.views.freemarker | Classes for views using FreeMarker. |
org.apache.struts2.views.xslt | The new xslt view supports an extensible Java XML adapter framework that makes it easy to customize the XML rendering of objects and to incorporate structured XML text and arbitarary DOM fragments into the output. |
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 abstract String |
MethodFilterInterceptor.doIntercept(ActionInvocation invocation)
Subclasses must override to implement the interceptor logic. |
protected String |
DefaultWorkflowInterceptor.doIntercept(ActionInvocation invocation)
Intercept ActionInvocation and returns a inputResultName
when action / field errors is found registered. |
String |
PrepareInterceptor.doIntercept(ActionInvocation invocation)
|
String |
ParametersInterceptor.doIntercept(ActionInvocation invocation)
|
protected Object |
ConversionErrorInterceptor.getOverrideExpr(ActionInvocation invocation,
Object value)
|
String |
ChainingInterceptor.intercept(ActionInvocation invocation)
|
String |
ConversionErrorInterceptor.intercept(ActionInvocation invocation)
|
String |
I18nInterceptor.intercept(ActionInvocation invocation)
|
String |
MethodFilterInterceptor.intercept(ActionInvocation invocation)
|
String |
ScopedModelDrivenInterceptor.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 |
StaticParametersInterceptor.intercept(ActionInvocation invocation)
|
String |
ModelDrivenInterceptor.intercept(ActionInvocation invocation)
|
String |
LoggingInterceptor.intercept(ActionInvocation invocation)
|
abstract String |
AbstractInterceptor.intercept(ActionInvocation invocation)
Override to handle interception |
String |
ParameterFilterInterceptor.intercept(ActionInvocation invocation)
|
String |
ExceptionMappingInterceptor.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 |
AliasInterceptor.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. |
private void |
LoggingInterceptor.logMessage(ActionInvocation invocation,
String baseMessage)
|
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 . |
Fields in com.opensymphony.xwork2.mock declared as ActionInvocation | |
---|---|
(package private) ActionInvocation |
MockActionProxy.invocation
|
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)
|
Uses of ActionInvocation in org.apache.struts2.config |
---|
Methods in org.apache.struts2.config with parameters of type ActionInvocation | |
---|---|
void |
NullResult.execute(ActionInvocation invocation)
|
Uses of ActionInvocation in org.apache.struts2.dispatcher |
---|
Methods in org.apache.struts2.dispatcher with parameters of type ActionInvocation | |
---|---|
protected String |
StrutsResultSupport.conditionalParse(String param,
ActionInvocation invocation)
Parses the parameter for OGNL expressions against the valuestack |
protected abstract void |
StrutsResultSupport.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). |
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. |
void |
ServletDispatcherResult.doExecute(String finalLocation,
ActionInvocation invocation)
Dispatches to the given location. |
protected void |
PlainTextResult.doExecute(String finalLocation,
ActionInvocation invocation)
|
protected void |
ServletRedirectResult.doExecute(String finalLocation,
ActionInvocation invocation)
Redirects to the location specified by calling HttpServletResponse.sendRedirect(String) . |
void |
StrutsResultSupport.execute(ActionInvocation invocation)
Implementation of the execute method from the Result interface. |
void |
ServletActionRedirectResult.execute(ActionInvocation invocation)
|
void |
HttpHeaderResult.execute(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 org.apache.velocity.Template |
VelocityResult.getTemplate(ValueStack 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 org.apache.struts2.interceptor |
---|
Fields in org.apache.struts2.interceptor declared as ActionInvocation | |
---|---|
protected ActionInvocation |
BackgroundProcess.invocation
|
Methods in org.apache.struts2.interceptor that return ActionInvocation | |
---|---|
ActionInvocation |
BackgroundProcess.getInvocation()
Retrieves the action invocation. |
Methods in org.apache.struts2.interceptor with parameters of type ActionInvocation | |
---|---|
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 |
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)
|
void |
ScopeInterceptor.beforeResult(ActionInvocation invocation,
String resultCode)
|
protected String |
TokenInterceptor.doIntercept(ActionInvocation invocation)
|
protected String |
ExecuteAndWaitInterceptor.doIntercept(ActionInvocation actionInvocation)
|
private String |
ScopeInterceptor.getKey(ActionInvocation invocation)
|
protected BackgroundProcess |
ExecuteAndWaitInterceptor.getNewBackgroundProcess(String name,
ActionInvocation actionInvocation,
int threadPriority)
Creates a new background process |
protected Object |
StrutsConversionErrorInterceptor.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 |
TokenSessionStoreInterceptor.handleInvalidToken(ActionInvocation invocation)
|
protected String |
TokenInterceptor.handleInvalidToken(ActionInvocation invocation)
Determines what to do if an invalida token is provided. |
protected String |
RolesInterceptor.handleRejection(ActionInvocation invocation,
HttpServletResponse response)
Handles a rejection by sending a 403 HTTP error |
protected String |
TokenSessionStoreInterceptor.handleValidToken(ActionInvocation invocation)
|
protected String |
TokenInterceptor.handleValidToken(ActionInvocation invocation)
Called when a valid token is found. |
String |
CheckboxInterceptor.intercept(ActionInvocation ai)
|
String |
MessageStoreInterceptor.intercept(ActionInvocation invocation)
|
String |
ProfilingActivationInterceptor.intercept(ActionInvocation invocation)
|
String |
CookieInterceptor.intercept(ActionInvocation invocation)
|
String |
CreateSessionInterceptor.intercept(ActionInvocation invocation)
|
String |
ScopeInterceptor.intercept(ActionInvocation invocation)
|
String |
RolesInterceptor.intercept(ActionInvocation invocation)
|
String |
ServletConfigInterceptor.intercept(ActionInvocation invocation)
Sets action properties based on the interfaces an action implements. |
String |
FileUploadInterceptor.intercept(ActionInvocation invocation)
|
(package private) static void |
ScopeInterceptor.lock(Object o,
ActionInvocation invocation)
|
Constructors in org.apache.struts2.interceptor with parameters of type ActionInvocation | |
---|---|
BackgroundProcess(String threadName,
ActionInvocation invocation,
int threadPriority)
Constructs a background process |
Uses of ActionInvocation in org.apache.struts2.interceptor.debugging |
---|
Methods in org.apache.struts2.interceptor.debugging with parameters of type ActionInvocation | |
---|---|
String |
DebuggingInterceptor.intercept(ActionInvocation inv)
|
Uses of ActionInvocation in org.apache.struts2.interceptor.validation |
---|
Methods in org.apache.struts2.interceptor.validation with parameters of type ActionInvocation | |
---|---|
protected String |
AnnotationValidationInterceptor.doIntercept(ActionInvocation invocation)
|
Uses of ActionInvocation in org.apache.struts2.portlet.interceptor |
---|
Methods in org.apache.struts2.portlet.interceptor with parameters of type ActionInvocation | |
---|---|
String |
PortletAwareInterceptor.intercept(ActionInvocation invocation)
Sets action properties based on the interfaces an action implements. |
String |
PortletPreferencesInterceptor.intercept(ActionInvocation invocation)
|
String |
PortletStateInterceptor.intercept(ActionInvocation invocation)
|
private boolean |
PortletStateInterceptor.isProperPrg(ActionInvocation invocation)
|
private void |
PortletStateInterceptor.restoreStack(ActionInvocation invocation)
|
private void |
PortletStateInterceptor.saveStack(ActionInvocation invocation)
|
Uses of ActionInvocation in org.apache.struts2.portlet.result |
---|
Methods in org.apache.struts2.portlet.result with parameters of type ActionInvocation | |
---|---|
void |
PortletResult.doExecute(String finalLocation,
ActionInvocation actionInvocation)
Execute the result. |
void |
PortletVelocityResult.doExecute(String location,
ActionInvocation invocation)
|
void |
PortletActionRedirectResult.execute(ActionInvocation invocation)
|
protected void |
PortletResult.executeActionResult(String finalLocation,
ActionInvocation invocation)
Executes the action result. |
private void |
PortletVelocityResult.executeActionResult(String location,
ActionInvocation invocation)
Executes the result |
private void |
PortletResult.executeRegularServletResult(String finalLocation,
ActionInvocation actionInvocation)
Executes the regular servlet 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(ValueStack 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 org.apache.struts2.util |
---|
Fields in org.apache.struts2.util declared as ActionInvocation | |
---|---|
(package private) ActionInvocation |
InvocationSessionStore.InvocationContext.invocation
|
Methods in org.apache.struts2.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 org.apache.struts2.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) |
Constructors in org.apache.struts2.util with parameters of type ActionInvocation | |
---|---|
InvocationSessionStore.InvocationContext(ActionInvocation invocation,
String token)
|
Uses of ActionInvocation in org.apache.struts2.validators |
---|
Classes in org.apache.struts2.validators that implement ActionInvocation | |
---|---|
static class |
DWRValidator.ValidatorActionInvocation
|
Uses of ActionInvocation in org.apache.struts2.views.freemarker |
---|
Fields in org.apache.struts2.views.freemarker declared as ActionInvocation | |
---|---|
protected ActionInvocation |
FreemarkerResult.invocation
|
protected ActionInvocation |
PortletFreemarkerResult.invocation
|
Methods in org.apache.struts2.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. |
private void |
PortletFreemarkerResult.executeActionResult(String location,
ActionInvocation invocation)
|
private void |
PortletFreemarkerResult.executeRenderResult(String location,
ActionInvocation invocation)
|
Uses of ActionInvocation in org.apache.struts2.views.xslt |
---|
Methods in org.apache.struts2.views.xslt with parameters of type ActionInvocation | |
---|---|
void |
XSLTResult.execute(ActionInvocation invocation)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |