001 /**
002 * Copyright 2005-2014 The Kuali Foundation
003 *
004 * Licensed under the Educational Community License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 * http://www.opensource.org/licenses/ecl2.php
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 */
016 package edu.sampleu.demo.kitchensink;
017
018 import org.kuali.rice.krad.web.form.UifFormBase;
019
020 import javax.servlet.http.HttpServletRequest;
021
022 /**
023 * Form for Test UI Page
024 *
025 * @author Kuali Rice Team (rice.collab@kuali.org)
026 */
027 public class UifDialogTestForm extends UifFormBase {
028 private static final long serialVersionUID = -7525378097732916418L;
029
030 private String field1;
031 private String field2;
032 private String field3;
033 private String field4;
034 private String field5;
035 private String field6;
036
037 private boolean bField1;
038
039 public UifDialogTestForm() {
040 super();
041 }
042
043 @Override
044 public void postBind(HttpServletRequest request) {
045 super.postBind(request);
046 }
047
048 /**
049 * @return the field1
050 */
051 public String getField1() {
052 return this.field1;
053 }
054
055 /**
056 * @param field1 the field1 to set
057 */
058 public void setField1(String field1) {
059 this.field1 = field1;
060 }
061
062
063 /**
064 * @return the field2
065 */
066 public String getField2() {
067 return this.field2;
068 }
069
070 /**
071 * @param field2 the field2 to set
072 */
073 public void setField2(String field2) {
074 this.field2 = field2;
075 }
076
077 /**
078 * @return the field3
079 */
080 public String getField3() {
081 return this.field3;
082 }
083
084 /**
085 * @param field3 the field3 to set
086 */
087 public void setField3(String field3) {
088 this.field3 = field3;
089 }
090
091 /**
092 * @return the field4
093 */
094 public String getField4() {
095 return field4;
096 }
097
098 /**
099 * @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 }