View Javadoc

1   /* Copyright 2011 The Kuali Foundation
2    * 
3    * Licensed under the Educational Community License, Version 1.0 (the
4    * "License"); you may not use this file except in compliance with the License.
5    * You may obtain a copy of the License at
6    * 
7    * http://www.opensource.org/licenses/ecl1.php
8    * 
9    * Unless required by applicable law or agreed to in writing, software
10   * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11   * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12   * License for the specific language governing permissions and limitations under
13   * the License.
14   */
15  package org.kuali.student.enrollment.class1.check.form;
16  
17  import org.kuali.rice.krad.web.form.UifFormBase;
18  import org.kuali.student.r2.core.process.dto.CheckInfo;
19  
20  import java.util.List;
21  
22  /**
23   * This class //TODO ...
24   *
25   * @author Kuali Student Team
26   */
27  
28  public class CheckInfoForm extends UifFormBase {
29      private static final long serialVersionUID = 4898118410378641665L;
30  
31  
32      private String id;
33      private String name;
34      private String typeKey;
35      private String stateKey;
36      private String descr;
37      private String holdIssueId;
38      private String milestoneTypeKey;
39      private String agendaId;
40      private String childProcessKey;
41      private String rightComparisonValue;
42      private String leftComparisonAgendaId;
43      private String rightComparisonAgendaId;
44      private CheckInfo  checkInfo;
45      private List<CheckInfo> checkInfoList;
46      private String holdName;
47      private String processName;
48      private String eventcalendar;
49      private String dialogStateKey;
50  
51      private boolean isSaveSuccess;
52      private boolean isInstructionActive;
53  
54      public CheckInfoForm() {
55          super();
56          checkInfo = new CheckInfo();
57  
58      }
59      public String getId() {
60          return id;
61      }
62  
63      public void setId(String id) {
64          this.id = id;
65      }
66  
67      public String getName() {
68          return name;
69      }
70  
71      public void setName(String name) {
72          this.name = name;
73      }
74  
75      public String getTypeKey() {
76          return typeKey;
77      }
78  
79      public void setTypeKey(String typeKey) {
80          this.typeKey = typeKey;
81      }
82  
83      public String getStateKey() {
84          return stateKey;
85      }
86  
87      public void setStateKey(String stateKey) {
88          this.stateKey = stateKey;
89      }
90  
91      public String getDescr() {
92          return descr;
93      }
94  
95      public void setDescr(String descr) {
96          this.descr = descr;
97      }
98  
99      public String getRightComparisonValue() {
100         return rightComparisonValue;
101     }
102 
103     public void setRightComparisonValue(String rightComparisonValue) {
104         this.rightComparisonValue = rightComparisonValue;
105     }
106     public String getAgendaId() {
107         return agendaId;
108     }
109 
110     public void setAgendaId(String agendaId) {
111         this.agendaId = agendaId;
112     }
113 
114     public CheckInfo getCheckInfo() {
115         return checkInfo;
116     }
117 
118     public void setCheckInfo(CheckInfo chechInfo) {
119         this.checkInfo = chechInfo;
120     }
121 
122     public String getChildProcessKey() {
123         return childProcessKey;
124     }
125 
126     public void setChildProcessKey(String childProcessKey) {
127         this.childProcessKey = childProcessKey;
128     }
129 
130     public String getHoldIssueId() {
131         return holdIssueId;
132     }
133 
134     public void setHoldIssueId(String holdIssueId) {
135         this.holdIssueId = holdIssueId;
136     }
137 
138     public String getLeftComparisonAgendaId() {
139         return leftComparisonAgendaId;
140     }
141 
142     public void setLeftComparisonAgendaId(String leftComparisonAgendaId) {
143         this.leftComparisonAgendaId = leftComparisonAgendaId;
144     }
145 
146     public String getMilestoneTypeKey() {
147         return milestoneTypeKey;
148     }
149 
150     public void setMilestoneTypeKey(String milestoneTypeKey) {
151         this.milestoneTypeKey = milestoneTypeKey;
152     }
153 
154     public String getRightComparisonAgendaId() {
155         return rightComparisonAgendaId;
156     }
157 
158     public void setRightComparisonAgendaId(String rightComparisonAgendaId) {
159         this.rightComparisonAgendaId = rightComparisonAgendaId;
160     }
161 
162 
163     public List<CheckInfo> getCheckInfoList() {
164         return checkInfoList;
165     }
166 
167     public void setCheckInfoList(List<CheckInfo> checkInfoList) {
168         this.checkInfoList = checkInfoList;
169     }
170     public String getHoldName() {
171         return holdName;
172     }
173 
174     public void setHoldName(String holdName) {
175         this.holdName = holdName;
176     }
177 
178 
179     public String getEventcalendar() {
180         return eventcalendar;
181     }
182 
183     public void setEventcalendar(String eventcalendar) {
184         this.eventcalendar = eventcalendar;
185     }
186 
187 
188     public String getProcessName() {
189         return processName;
190     }
191 
192     public void setProcessName(String processName) {
193         this.processName = processName;
194     }
195 
196     public boolean getIsSaveSuccess() {
197         return isSaveSuccess;
198     }
199 
200     public void setIsSaveSuccess(boolean saveSuccess) {
201         isSaveSuccess = saveSuccess;
202     }
203 
204     public boolean getIsInstructionActive() {
205         return isInstructionActive;
206     }
207 
208     public void setIsInstructionActive(boolean instructionActive) {
209         isInstructionActive = instructionActive;
210     }
211 
212     public String getDialogStateKey() {
213         return dialogStateKey;
214     }
215 
216     public void setDialogStateKey(String dialogStateKey) {
217         this.dialogStateKey = dialogStateKey;
218     }
219 }