Methods Summary |
---|
protected void | afterInvocation()Called after the background thread determines the result code
from the ActionInvocation, but before the background thread is
marked as done.
|
protected void | beforeInvocation()Called before the background thread determines the result code
from the ActionInvocation.
|
public java.lang.Object | getAction()Retrieves the action.
return action;
|
public java.lang.Exception | getException()Gets the exception if any was thrown during the execution of the background process.
return exception;
|
public com.opensymphony.xwork2.ActionInvocation | getInvocation()Retrieves the action invocation.
return invocation;
|
public java.lang.String | getResult()Gets the result of the background process.
return result;
|
public boolean | isDone()Returns the status of the background process.
return done;
|