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 SkinForm extends ValidatorForm {
25
26 private static final long serialVersionUID = 4426347849613360418L;
27
28 private String name;
29 private String displayName;
30 private String author;
31 private String description;
32 private String[] availableSites;
33 private FormFile file;
34
35 public SkinForm(){
36 }
37
38 public String getAuthor() {
39 return author;
40 }
41
42 public void setAuthor(String author) {
43 this.author = author;
44 }
45
46 public String getDescription() {
47 return description;
48 }
49
50 public void setDescription(String description) {
51 this.description = description;
52 }
53
54 public String getDisplayName() {
55 return displayName;
56 }
57
58 public void setDisplayName(String displayName) {
59 this.displayName = displayName;
60 }
61
62 public FormFile getFile() {
63 return file;
64 }
65
66 public void setFile(FormFile file) {
67 this.file = file;
68 }
69
70 public String getName() {
71 return name;
72 }
73
74 public void setName(String name) {
75 this.name = name;
76 }
77
78 public String[] getAvailableSites() {
79 return availableSites;
80 }
81
82 public void setAvailableSites(String[] availableSites) {
83 this.availableSites = availableSites;
84 }
85
86
87 }