| 1 | |
package org.kuali.student.enrollment.waitlist.dto; |
| 2 | |
|
| 3 | |
import java.io.Serializable; |
| 4 | |
import java.util.Date; |
| 5 | |
import java.util.List; |
| 6 | |
|
| 7 | |
import org.kuali.student.enrollment.waitlist.course.infc.CourseWaitlistEntry; |
| 8 | |
import org.kuali.student.r2.common.dto.IdEntityInfo; |
| 9 | |
import org.kuali.student.r2.common.dto.RelationshipInfo; |
| 10 | |
import org.w3c.dom.Element; |
| 11 | |
|
| 12 | 0 | public class CourseWaitlistEntryInfo extends RelationshipInfo implements CourseWaitlistEntry, Serializable { |
| 13 | |
|
| 14 | |
private static final long serialVersionUID = 1L; |
| 15 | |
|
| 16 | |
private String studentId; |
| 17 | |
|
| 18 | |
private String courseWaitlistOptionId; |
| 19 | |
|
| 20 | |
private Integer position; |
| 21 | |
|
| 22 | |
private Boolean hasCheckedIn; |
| 23 | |
|
| 24 | |
private List<Element> _futureElements; |
| 25 | |
|
| 26 | |
|
| 27 | |
public void setHasCheckedIn(Boolean hasCheckedIn) { |
| 28 | 0 | this.hasCheckedIn = hasCheckedIn; |
| 29 | 0 | } |
| 30 | |
|
| 31 | |
public void setStudentId(String studentId) { |
| 32 | 0 | this.studentId = studentId; |
| 33 | 0 | } |
| 34 | |
|
| 35 | |
public void setCourseWaitlistOptionId(String courseWaitlistOptionId) { |
| 36 | 0 | this.courseWaitlistOptionId = courseWaitlistOptionId; |
| 37 | 0 | } |
| 38 | |
|
| 39 | |
public void setPosition(Integer position) { |
| 40 | 0 | this.position = position; |
| 41 | 0 | } |
| 42 | |
|
| 43 | |
@Override |
| 44 | |
public String getStudentId() { |
| 45 | 0 | return studentId; |
| 46 | |
} |
| 47 | |
|
| 48 | |
@Override |
| 49 | |
public String getCourseWaitlistOptionId() { |
| 50 | 0 | return courseWaitlistOptionId; |
| 51 | |
} |
| 52 | |
|
| 53 | |
@Override |
| 54 | |
public Integer getPosition() { |
| 55 | 0 | return position; |
| 56 | |
} |
| 57 | |
|
| 58 | |
@Override |
| 59 | |
public Boolean getHasCheckedIn() { |
| 60 | 0 | return hasCheckedIn; |
| 61 | |
} |
| 62 | |
|
| 63 | |
} |