| java.lang.Object org.apache.beehive.netui.pageflow.PreviousInfo org.apache.beehive.netui.pageflow.PreviousActionInfo
PreviousActionInfo | public class PreviousActionInfo extends PreviousInfo implements Serializable(Code) | | Stores information about a recent action execution within a pageflow -- used with
Used with
navigateTo=
org.apache.beehive.netui.pageflow.annotations.Jpf.NavigateTo.previousAction Jpf.NavigateTo.previousAction
on
org.apache.beehive.netui.pageflow.annotations.Jpf.Forward Jpf.Forward ,
org.apache.beehive.netui.pageflow.annotations.Jpf.SimpleAction Jpf.SimpleAction , or
org.apache.beehive.netui.pageflow.annotations.Jpf.ConditionalForward Jpf.ConditionalForward .
|
Constructor Summary | |
public | PreviousActionInfo(ActionForm form, String actionURI, String queryString) Constructor which accepts an ActionForm and action URI. |
Method Summary | |
public String | getActionURI() Get the URI that was used to execute the action. | public void | setActionURI(String actionURI) Set the URI that was used to execute the action. |
PreviousActionInfo | public PreviousActionInfo(ActionForm form, String actionURI, String queryString)(Code) | | Constructor which accepts an ActionForm and action URI.
Parameters: form - the form that was passed to the action. Parameters: actionURI - the URI that was used to execute the action. Parameters: queryString - the query string from the previous action URI. |
getActionURI | public String getActionURI()(Code) | | Get the URI that was used to execute the action.
the String URI that was used to execute the action. |
setActionURI | public void setActionURI(String actionURI)(Code) | | Set the URI that was used to execute the action.
Parameters: actionURI - the URI that was used to execute the action. |
|
|