Subversion Repositories general

Rev

Rev 1249 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
936 dev 1
package ak.photoalbum.webapp;
2
 
3
import javax.servlet.http.HttpServletRequest;
4
import org.apache.struts.action.ActionError;
5
import org.apache.struts.action.ActionErrors;
6
import org.apache.struts.action.ActionMapping;
7
 
8
public class PathForm
1250 dev 9
  extends BranchForm
936 dev 10
{
11
  protected String path;
12
 
13
  public String getPath()
14
  {
15
    return path;
16
  }
17
 
18
  public void setPath(String path)
19
  {
20
    this.path = path;
21
  }
22
 
23
  public ActionErrors validate(ActionMapping mapping,
24
    HttpServletRequest request)
25
  {
26
    ActionErrors errors = new ActionErrors();
27
 
28
    return errors;
29
  }
30
}