Rev 936 | 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.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 | } |