1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package edu.sampleu.student.web.form; |
17 | |
|
18 | |
import edu.sampleu.student.dataobject.Course; |
19 | |
import org.kuali.rice.krad.web.form.UifFormBase; |
20 | |
|
21 | |
import java.util.ArrayList; |
22 | |
import java.util.HashMap; |
23 | |
import java.util.List; |
24 | |
import java.util.Map; |
25 | |
|
26 | |
|
27 | |
|
28 | |
|
29 | |
public class RegistrationForm extends UifFormBase { |
30 | |
private static final long serialVersionUID = 5758492647092249491L; |
31 | |
|
32 | |
private String registrationTerm; |
33 | |
private Integer registrationYear; |
34 | |
|
35 | |
private Map<String, String> criteriaFields; |
36 | |
private List<Course> courseListing; |
37 | |
|
38 | |
public RegistrationForm() { |
39 | 0 | super(); |
40 | |
|
41 | 0 | criteriaFields = new HashMap<String, String>(); |
42 | 0 | courseListing = new ArrayList<Course>(); |
43 | 0 | } |
44 | |
|
45 | |
public String getRegistrationTerm() { |
46 | 0 | return registrationTerm; |
47 | |
} |
48 | |
|
49 | |
public void setRegistrationTerm(String registrationTerm) { |
50 | 0 | this.registrationTerm = registrationTerm; |
51 | 0 | } |
52 | |
|
53 | |
public Integer getRegistrationYear() { |
54 | 0 | return registrationYear; |
55 | |
} |
56 | |
|
57 | |
public void setRegistrationYear(Integer registrationYear) { |
58 | 0 | this.registrationYear = registrationYear; |
59 | 0 | } |
60 | |
|
61 | |
public Map<String, String> getCriteriaFields() { |
62 | 0 | return criteriaFields; |
63 | |
} |
64 | |
|
65 | |
public void setCriteriaFields(Map<String, String> criteriaFields) { |
66 | 0 | this.criteriaFields = criteriaFields; |
67 | 0 | } |
68 | |
|
69 | |
public List<Course> getCourseListing() { |
70 | 0 | return courseListing; |
71 | |
} |
72 | |
|
73 | |
public void setCourseListing(List<Course> courseListing) { |
74 | 0 | this.courseListing = courseListing; |
75 | 0 | } |
76 | |
} |