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 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  }