Rev 1250 | 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.ActionErrors; |
||
5 | import org.apache.struts.action.ActionMapping; |
||
6 | |||
7 | public class PathForm |
||
1250 | dev | 8 | extends BranchForm |
936 | dev | 9 | { |
10 | protected String path; |
||
11 | |||
12 | public String getPath() |
||
13 | { |
||
14 | return path; |
||
15 | } |
||
16 | |||
17 | public void setPath(String path) |
||
18 | { |
||
19 | this.path = path; |
||
20 | } |
||
21 | |||
22 | public ActionErrors validate(ActionMapping mapping, |
||
23 | HttpServletRequest request) |
||
24 | { |
||
25 | ActionErrors errors = new ActionErrors(); |
||
26 | |||
27 | return errors; |
||
28 | } |
||
29 | } |