1 package org.kuali.student.common.kitchensink.performance;
2
3 import org.kuali.rice.krad.web.form.UifFormBase;
4
5 import java.util.List;
6
7
8
9
10
11
12
13
14 public class KitchenSinkPerformanceForm extends UifFormBase {
15 private String inputOne;
16 private List<KitchenSinkPerformanceCollection> perfCollection;
17
18 public String getInputOne() {
19 return inputOne;
20 }
21
22 public void setInputOne(String inputOne) {
23 this.inputOne = inputOne;
24 }
25
26 public List<KitchenSinkPerformanceCollection> getPerfCollection() {
27 return perfCollection;
28 }
29
30 public void setPerfCollection(List<KitchenSinkPerformanceCollection> perfCollection) {
31 this.perfCollection = perfCollection;
32 }
33 }