org.apache.beehive.netui.pageflow
Class PreviousActionInfo
Object
PreviousInfo
PreviousActionInfo
- All Implemented Interfaces:
- Serializable
public class PreviousActionInfo
- extends PreviousInfo
- implements Serializable
Stores information about a recent action execution within a pageflow -- used with
Used with
navigateTo=Jpf.NavigateTo.previousAction
on Jpf.Forward,
Jpf.SimpleAction, or
Jpf.ConditionalForward.
- See Also:
- Serialized Form
|
Constructor Summary |
PreviousActionInfo(ActionForm form,
String actionURI,
String queryString)
Constructor which accepts an ActionForm and action URI. |
|
Method Summary |
String |
getActionURI()
Get the URI that was used to execute the action. |
void |
setActionURI(String actionURI)
Set the URI that was used to execute the action. |
| Methods inherited from class Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
PreviousActionInfo
public PreviousActionInfo(ActionForm form,
String actionURI,
String queryString)
- Constructor which accepts an ActionForm and action URI.
- Parameters:
form - the form that was passed to the action.actionURI - the URI that was used to execute the action.queryString - the query string from the previous action URI.
getActionURI
public String getActionURI()
- Get the URI that was used to execute the action.
- Returns:
- the String URI that was used to execute the action.
setActionURI
public void setActionURI(String actionURI)
- Set the URI that was used to execute the action.
- Parameters:
actionURI - the URI that was used to execute the action.