1 18 package org.apache.beehive.netui.pageflow; 19 20 import org.apache.struts.action.ActionForm; 21 22 import java.io.Serializable ; 23 24 32 public class PreviousActionInfo 33 extends PreviousInfo 34 implements Serializable  35 { 36 private String _actionURI; 37 38 39 46 public PreviousActionInfo( ActionForm form, String actionURI, String queryString ) 47 { 48 super( form, queryString ); 49 _actionURI = actionURI; 50 } 51 52 57 public String getActionURI() 58 { 59 return _actionURI; 60 } 61 62 67 public void setActionURI( String actionURI ) 68 { 69 _actionURI = actionURI; 70 } 71 } 72 | Popular Tags |