1 /**
2 * Copyright 2005-2013 The Kuali Foundation
3 *
4 * Licensed under the Educational Community 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.opensource.org/licenses/ecl2.php
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, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16 package edu.sampleu.demo.kitchensink;
17
18 import org.kuali.rice.krad.web.form.UifFormBase;
19
20 import javax.servlet.http.HttpServletRequest;
21
22 /**
23 * Form for Test UI Page
24 *
25 * @author Kuali Rice Team (rice.collab@kuali.org)
26 */
27 public class UifDialogTestForm extends UifFormBase {
28 private static final long serialVersionUID = -7525378097732916418L;
29
30 private String field1;
31 private String field2;
32 private String field3;
33 private String field4;
34 private String field5;
35 private String field6;
36
37 private boolean bField1;
38
39 public UifDialogTestForm() {
40 super();
41 }
42
43 @Override
44 public void postBind(HttpServletRequest request) {
45 super.postBind(request);
46 }
47
48 /**
49 * @return the field1
50 */
51 public String getField1() {
52 return this.field1;
53 }
54
55 /**
56 * @param field1 the field1 to set
57 */
58 public void setField1(String field1) {
59 this.field1 = field1;
60 }
61
62
63 /**
64 * @return the field2
65 */
66 public String getField2() {
67 return this.field2;
68 }
69
70 /**
71 * @param field2 the field2 to set
72 */
73 public void setField2(String field2) {
74 this.field2 = field2;
75 }
76
77 /**
78 * @return the field3
79 */
80 public String getField3() {
81 return this.field3;
82 }
83
84 /**
85 * @param field3 the field3 to set
86 */
87 public void setField3(String field3) {
88 this.field3 = field3;
89 }
90
91 /**
92 * @return the field4
93 */
94 public String getField4() {
95 return field4;
96 }
97
98 /**
99 * @param field4 the field4 to set
100 */
101 public void setField4(String field4) {
102 this.field4 = field4;
103 }
104
105 /**
106 * @return the field5
107 */
108 public String getField5() {
109 return field5;
110 }
111
112 /**
113 * @param field5 the field5 to set
114 */
115 public void setField5(String field5) {
116 this.field5 = field5;
117 }
118
119 /**
120 * @return the field6
121 */
122 public String getField6() {
123 return field6;
124 }
125
126 /**
127 * @param field6 the field6 to set
128 */
129 public void setField6(String field6) {
130 this.field6 = field6;
131 }
132
133 /**
134 * @return the bField1
135 */
136 public boolean isbField1() {
137 return this.bField1;
138 }
139
140 /**
141 * @param bField1 the bField1 to set
142 */
143 public void setbField1(boolean bField1) {
144 this.bField1 = bField1;
145 }
146
147 }