1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.seasar.tuigwaa.controller;
17
18 import org.apache.struts.upload.FormFile;
19 import org.apache.struts.validator.ValidatorForm;
20
21 /***
22 * @author someda
23 */
24 public class DesignForm extends ValidatorForm {
25
26 private static final long serialVersionUID = 1725759575093036727L;
27
28 private FormFile logofile;
29
30 private String logopath;
31
32 private String menuPagename;
33
34 private String rightPagename;
35
36 public DesignForm(){
37 }
38
39 public FormFile getLogofile() {
40 return logofile;
41 }
42
43 public void setLogofile(FormFile logofile) {
44 this.logofile = logofile;
45 }
46
47 public String getLogopath() {
48 return logopath;
49 }
50
51 public void setLogopath(String logopath) {
52 this.logopath = logopath;
53 }
54
55 public String getMenuPagename() {
56 return menuPagename;
57 }
58
59 public void setMenuPagename(String menuPagename) {
60 this.menuPagename = menuPagename;
61 }
62
63 public String getRightPagename() {
64 return rightPagename;
65 }
66
67 public void setRightPagename(String rightPagename) {
68 this.rightPagename = rightPagename;
69 }
70
71 }