View Javadoc

1   /*
2    * Copyright 2004-2006 the Seasar Foundation and the Others.
3    *
4    * Licensed under the Apache License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    *     http://www.apache.org/licenses/LICENSE-2.0
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, 
13   * either express or implied. See the License for the specific language
14   * governing permissions and limitations under the License.
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  }