|
||||||||||
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.impl | |
org.apache.struts2.interceptor | Web specific interceptor classes. |
org.apache.struts2.interceptor.debugging | |
org.apache.struts2.interceptor.validation | |
org.apache.struts2.util | Miscellaneous helper classes. |
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()
Gets the ActionInvocation associated with this ActionProxy. |
ActionInvocation |
DefaultActionProxy.getInvocation()
|
Methods in com.opensymphony.xwork2 with parameters of type ActionInvocation | |
---|---|
ActionProxy |
DefaultActionProxyFactory.createActionProxy(ActionInvocation inv,
String namespace,
String actionName,
boolean executeResult,
boolean cleanupContext)
|
ActionProxy |
ActionProxyFactory.createActionProxy(ActionInvocation actionInvocation,
String namespace,
String actionName,
String methodName,
boolean executeResult,
boolean cleanupContext)
Creates an ActionProxy for the given namespace and action name by looking up the configuration.The ActionProxy
should be fully initialized when it is returned, including passed ActionInvocation instance. |
ActionProxy |
DefaultActionProxyFactory.createActionProxy(ActionInvocation inv,
String namespace,
String actionName,
String methodName,
boolean executeResult,
boolean cleanupContext)
|
void |
ActionChainResult.execute(ActionInvocation invocation)
|
void |
Result.execute(ActionInvocation invocation)
Represents a generic interface for all action execution results. |
void |
ActionContext.setActionInvocation(ActionInvocation actionInvocation)
Sets the action invocation (the execution state). |
Constructors in com.opensymphony.xwork2 with parameters of type ActionInvocation | |
---|---|
DefaultActionProxy(ActionInvocation inv,
String namespace,
String actionName,
String methodName,
boolean executeResult,
boolean cleanupContext)
This constructor is private so the builder methods (create*) should be used to create an DefaultActionProxy. |
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 |
ModelDrivenInterceptor.RefreshModelBeforeResult.beforeResult(ActionInvocation invocation,
String resultCode)
|
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)
Intercept ActionInvocation and returns a inputResultName
when action / field errors is found registered. |
protected abstract String |
MethodFilterInterceptor.doIntercept(ActionInvocation invocation)
Subclasses must override to implement the interceptor logic. |
String |
ParametersInterceptor.doIntercept(ActionInvocation invocation)
|
String |
PrepareInterceptor.doIntercept(ActionInvocation invocation)
|
protected Object |
ConversionErrorInterceptor.getOverrideExpr(ActionInvocation invocation,
Object value)
|
abstract String |
AbstractInterceptor.intercept(ActionInvocation invocation)
Override to handle interception |
String |
AliasInterceptor.intercept(ActionInvocation invocation)
|
String |
ChainingInterceptor.intercept(ActionInvocation invocation)
|
String |
ConversionErrorInterceptor.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 |
LoggingInterceptor.intercept(ActionInvocation invocation)
|
String |
MethodFilterInterceptor.intercept(ActionInvocation invocation)
|
String |
ModelDrivenInterceptor.intercept(ActionInvocation invocation)
|
String |
ParameterFilterInterceptor.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 |
ScopedModelDrivenInterceptor.intercept(ActionInvocation invocation)
|
String |
StaticParametersInterceptor.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 delegates to ActionValidatorManager proper validate method. |
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 |
PlainTextResult.doExecute(String finalLocation,
ActionInvocation invocation)
|
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. |
void |
ServletDispatcherResult.doExecute(String finalLocation,
ActionInvocation invocation)
Dispatches to the given location. |
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.impl |
---|
Methods in org.apache.struts2.impl with parameters of type ActionInvocation | |
---|---|
ActionProxy |
StrutsActionProxyFactory.createActionProxy(ActionInvocation inv,
String namespace,
String actionName,
String methodName,
boolean executeResult,
boolean cleanupContext)
|
Constructors in org.apache.struts2.impl with parameters of type ActionInvocation | |
---|---|
StrutsActionProxy(ActionInvocation inv,
String namespace,
String actionName,
String methodName,
boolean executeResult,
boolean cleanupContext)
|
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 |
ScopeInterceptor.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.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'. |
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 invalid 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 |
ScopeInterceptor.intercept(ActionInvocation invocation)
|
String |
ClearSessionInterceptor.intercept(ActionInvocation invocation)
|
String |
CreateSessionInterceptor.intercept(ActionInvocation invocation)
|
String |
ProfilingActivationInterceptor.intercept(ActionInvocation invocation)
|
String |
CookieInterceptor.intercept(ActionInvocation invocation)
|
String |
ServletConfigInterceptor.intercept(ActionInvocation invocation)
Sets action properties based on the interfaces an action implements. |
String |
FileUploadInterceptor.intercept(ActionInvocation invocation)
|
String |
CheckboxInterceptor.intercept(ActionInvocation ai)
|
String |
MessageStoreInterceptor.intercept(ActionInvocation invocation)
|
String |
RolesInterceptor.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)
|
protected String |
JSONValidationInterceptor.doIntercept(ActionInvocation invocation)
|
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.views.freemarker |
---|
Fields in org.apache.struts2.views.freemarker declared as ActionInvocation | |
---|---|
protected ActionInvocation |
FreemarkerResult.invocation
|
Methods in org.apache.struts2.views.freemarker with parameters of type ActionInvocation | |
---|---|
void |
FreemarkerResult.doExecute(String locationArg,
ActionInvocation invocation)
Execute this result, using the specified template locationArg. |
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 |