| 1 | |
package org.kuali.student.enrollment.class2.appointment.form; |
| 2 | |
|
| 3 | |
import org.kuali.rice.krad.web.form.UifFormBase; |
| 4 | |
import org.kuali.student.enrollment.acal.dto.KeyDateInfo; |
| 5 | |
import org.kuali.student.enrollment.acal.dto.TermInfo; |
| 6 | |
import org.kuali.student.r2.core.appointment.dto.AppointmentWindowInfo; |
| 7 | |
import org.kuali.student.enrollment.class2.appointment.dto.AppointmentWindowWrapper; |
| 8 | |
|
| 9 | |
import java.util.ArrayList; |
| 10 | |
import java.util.List; |
| 11 | |
|
| 12 | |
public class RegistrationWindowsManagementForm extends UifFormBase { |
| 13 | |
private TermInfo termInfo; |
| 14 | |
private String termType; |
| 15 | |
private String termYear; |
| 16 | |
|
| 17 | |
private String periodId; |
| 18 | |
private String periodName; |
| 19 | |
private String periodInfoDetails; |
| 20 | |
private List<KeyDateInfo> periodMilestones; |
| 21 | |
private List<AppointmentWindowWrapper> appointmentWindows; |
| 22 | |
|
| 23 | |
|
| 24 | |
boolean showAddWindows; |
| 25 | |
|
| 26 | |
|
| 27 | |
|
| 28 | 0 | public RegistrationWindowsManagementForm(){ |
| 29 | 0 | termInfo = new TermInfo(); |
| 30 | 0 | periodInfoDetails = new String(); |
| 31 | 0 | periodMilestones = new ArrayList<KeyDateInfo>(); |
| 32 | 0 | appointmentWindows = new ArrayList<AppointmentWindowWrapper>(); |
| 33 | |
|
| 34 | 0 | showAddWindows = false; |
| 35 | 0 | } |
| 36 | |
|
| 37 | |
public TermInfo getTermInfo(){ |
| 38 | 0 | return termInfo; |
| 39 | |
} |
| 40 | |
|
| 41 | |
public void setTermInfo(TermInfo termInfo) { |
| 42 | 0 | this.termInfo = termInfo; |
| 43 | 0 | } |
| 44 | |
|
| 45 | |
public String getTermType(){ |
| 46 | 0 | return termType; |
| 47 | |
} |
| 48 | |
|
| 49 | |
public void setTermType(String termType) { |
| 50 | 0 | this.termType = termType; |
| 51 | 0 | } |
| 52 | |
|
| 53 | |
public String getTermYear(){ |
| 54 | 0 | return termYear; |
| 55 | |
} |
| 56 | |
|
| 57 | |
public void setTermYear(String termYear) { |
| 58 | 0 | this.termYear = termYear; |
| 59 | 0 | } |
| 60 | |
|
| 61 | |
public String getPeriodId() { |
| 62 | 0 | return periodId; |
| 63 | |
} |
| 64 | |
|
| 65 | |
public void setPeriodId(String periodId) { |
| 66 | 0 | this.periodId = periodId; |
| 67 | 0 | } |
| 68 | |
|
| 69 | |
public String getPeriodName() { |
| 70 | 0 | return periodName; |
| 71 | |
} |
| 72 | |
|
| 73 | |
public void setPeriodName(String periodName) { |
| 74 | 0 | this.periodName = periodName; |
| 75 | 0 | } |
| 76 | |
|
| 77 | |
public String getPeriodInfoDetails() { |
| 78 | 0 | return periodInfoDetails; |
| 79 | |
} |
| 80 | |
|
| 81 | |
public void setPeriodInfoDetails(String periodInfoDetails) { |
| 82 | 0 | this.periodInfoDetails = periodInfoDetails; |
| 83 | 0 | } |
| 84 | |
|
| 85 | |
public List<KeyDateInfo> getPeriodMilestones() { |
| 86 | 0 | return periodMilestones; |
| 87 | |
} |
| 88 | |
|
| 89 | |
public void setPeriodMilestones(List<KeyDateInfo> periodMilestones){ |
| 90 | 0 | this.periodMilestones = periodMilestones; |
| 91 | 0 | } |
| 92 | |
|
| 93 | |
public List<AppointmentWindowWrapper> getAppointmentWindows(){ |
| 94 | 0 | return appointmentWindows; |
| 95 | |
} |
| 96 | |
|
| 97 | |
public void setAppointmentWindows(List<AppointmentWindowWrapper> appointmentWindows){ |
| 98 | 0 | this.appointmentWindows = appointmentWindows; |
| 99 | 0 | } |
| 100 | |
|
| 101 | |
|
| 102 | |
|
| 103 | |
|
| 104 | |
|
| 105 | |
|
| 106 | |
|
| 107 | |
|
| 108 | |
|
| 109 | |
public boolean isShowAddWindows() { |
| 110 | 0 | return showAddWindows; |
| 111 | |
} |
| 112 | |
|
| 113 | |
public void setShowAddWindows(boolean showAddWindows) { |
| 114 | 0 | this.showAddWindows = showAddWindows; |
| 115 | 0 | } |
| 116 | |
} |