Coverage Report - org.kuali.student.enrollment.waitlist.course.dto.CourseWaitlistEntryInfo
 
Classes in this File Line Coverage Branch Coverage Complexity
CourseWaitlistEntryInfo
0%
0/30
0%
0/2
1.083
 
 1  
 package org.kuali.student.enrollment.waitlist.course.dto;
 2  
 
 3  
 import java.io.Serializable;
 4  
 import java.util.Date;
 5  
 import java.util.List;
 6  
 
 7  
 import javax.xml.bind.annotation.XmlAccessType;
 8  
 import javax.xml.bind.annotation.XmlAccessorType;
 9  
 import javax.xml.bind.annotation.XmlAnyElement;
 10  
 import javax.xml.bind.annotation.XmlElement;
 11  
 import javax.xml.bind.annotation.XmlType;
 12  
 
 13  
 import org.kuali.student.enrollment.waitlist.course.infc.CourseWaitlistEntry;
 14  
 import org.kuali.student.r2.common.dto.RelationshipInfo;
 15  
 import org.w3c.dom.Element;
 16  
 
 17  
 @XmlAccessorType(XmlAccessType.FIELD)
 18  
 @XmlType(name = "CourseWaitlistEntryInfo", propOrder = {"id", "typeKey", "stateKey", "effectiveDate", "expirationDate",
 19  
         "studentId", "regGroupId", "position", "lastCheckedIn", "courseOfferingId", "meta", "attributes",
 20  
         "_futureElements"})
 21  
 public class CourseWaitlistEntryInfo extends RelationshipInfo implements CourseWaitlistEntry, Serializable {
 22  
 
 23  
     private static final long serialVersionUID = 1L;
 24  
 
 25  
     @XmlElement
 26  
     private String studentId;
 27  
 
 28  
     @XmlElement
 29  
     private String regGroupId;
 30  
 
 31  
     @XmlElement
 32  
     private Integer position;
 33  
 
 34  
     @XmlElement
 35  
     private Date lastCheckedIn;
 36  
 
 37  
     @XmlElement
 38  
     private String courseOfferingId;
 39  
 
 40  
     @XmlAnyElement
 41  
     private List<Element> _futureElements;
 42  
 
 43  
     public CourseWaitlistEntryInfo() {
 44  0
         super();
 45  0
         this.studentId = null;
 46  0
         this.position = null;
 47  0
         this.lastCheckedIn = null;
 48  0
         this._futureElements = null;
 49  0
     }
 50  
 
 51  
     public CourseWaitlistEntryInfo(CourseWaitlistEntry courseWaitlistEntry) {
 52  0
         super(courseWaitlistEntry);
 53  0
         if (null != courseWaitlistEntry) {
 54  0
             this.studentId = courseWaitlistEntry.getStudentId();
 55  0
             this.regGroupId = courseWaitlistEntry.getRegGroupId();
 56  0
             this.position = courseWaitlistEntry.getPosition();
 57  0
             this.lastCheckedIn = courseWaitlistEntry.getLastCheckedIn();
 58  0
             this.courseOfferingId = courseWaitlistEntry.getCourseOfferingId();
 59  0
             this._futureElements = null;
 60  
         }
 61  0
     }
 62  
 
 63  
     public void setLastCheckedIn(Date hasCheckedIn) {
 64  0
         this.lastCheckedIn = hasCheckedIn;
 65  0
     }
 66  
 
 67  
     public void setStudentId(String studentId) {
 68  0
         this.studentId = studentId;
 69  0
     }
 70  
 
 71  
     public void setPosition(Integer position) {
 72  0
         this.position = position;
 73  0
     }
 74  
 
 75  
     @Override
 76  
     public String getRegGroupId() {
 77  0
         return regGroupId;
 78  
     }
 79  
 
 80  
     public void setRegGroupId(String regGroupId) {
 81  0
         this.regGroupId = regGroupId;
 82  0
     }
 83  
 
 84  
     @Override
 85  
     public String getStudentId() {
 86  0
         return studentId;
 87  
     }
 88  
 
 89  
     @Override
 90  
     public Integer getPosition() {
 91  0
         return position;
 92  
     }
 93  
 
 94  
     @Override
 95  
     public Date getLastCheckedIn() {
 96  0
         return lastCheckedIn;
 97  
     }
 98  
 
 99  
     @Override
 100  
     public String getCourseOfferingId() {
 101  0
         return courseOfferingId;
 102  
     }
 103  
 
 104  
     public void setCourseOfferingId(String courseOfferingId) {
 105  0
         this.courseOfferingId = courseOfferingId;
 106  0
     }
 107  
 
 108  
 }