Warning: Attempt to read property "date" on null in /home/www/websvn.26th.net/html/blame.php on line 247

Warning: Attempt to read property "msg" on null in /home/www/websvn.26th.net/html/blame.php on line 247

Deprecated: preg_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated in /home/www/websvn.26th.net/html/blame.php on line 247
WebSVN – general – Blame – /PhotoAlbum/trunk/src/ak/photoalbum/webapp/PathForm.java/ – Rev 936

Subversion Repositories general

Rev

Go to most recent revision | Details | 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.ActionForm;
7
import org.apache.struts.action.ActionMapping;
8
 
9
public class PathForm
10
  extends ActionForm
11
{
12
  protected String path;
13
 
14
  public String getPath()
15
  {
16
    return path;
17
  }
18
 
19
  public void setPath(String path)
20
  {
21
    this.path = path;
22
  }
23
 
24
  public ActionErrors validate(ActionMapping mapping,
25
    HttpServletRequest request)
26
  {
27
    ActionErrors errors = new ActionErrors();
28
 
29
    return errors;
30
  }
31
}