Coverage Report - org.kuali.student.r2.core.collection.dto.CollectionEntryInfo
 
Classes in this File Line Coverage Branch Coverage Complexity
CollectionEntryInfo
0%
0/13
N/A
1
 
 1  
 package org.kuali.student.r2.core.collection.dto;
 2  
 
 3  
 import java.io.Serializable;
 4  
 import java.util.Date;
 5  
 
 6  
 import javax.xml.bind.annotation.XmlAccessType;
 7  
 import javax.xml.bind.annotation.XmlAccessorType;
 8  
 import javax.xml.bind.annotation.XmlType;
 9  
 
 10  
 import org.kuali.student.r2.common.dto.IdEntityInfo;
 11  
 import org.kuali.student.r2.common.infc.Entity;
 12  
 import org.kuali.student.r2.core.collection.infc.CollectionEntry;
 13  
 
 14  
 /**
 15  
  * 
 16  
  * This is a description of what this class does - sambitpatnaik don't forget to fill this in. 
 17  
  * 
 18  
  * @author Kuali Rice Team (kuali-rice@googlegroups.com)
 19  
  *
 20  
  */
 21  
 
 22  
 
 23  
 @XmlAccessorType(XmlAccessType.FIELD)
 24  
 @XmlType(name = "CollectionEntryInfo", propOrder = {"id", "typeKey", "stateKey", "name", "descr",
 25  
         "entryRefObjectId", "entryRefObjectTypeKey", "checkInDate", "position", "meta", "attributes", "_futureElements"})
 26  
 
 27  0
 public class CollectionEntryInfo extends IdEntityInfo implements
 28  
                 CollectionEntry, Serializable {
 29  
         
 30  
         private static final long serialVersionUID = 6513602532091764366L;
 31  
 
 32  
         private String entryRefObjectId;
 33  
         
 34  
         private String entryRefObjectTypeKey;
 35  
 
 36  
         private Date checkInDate;
 37  
         
 38  
         private Integer position;
 39  
 
 40  
         public void setEntryRefObjectTypeKey(String entryRefObjectTypeKey) {
 41  0
                 this.entryRefObjectTypeKey = entryRefObjectTypeKey;
 42  0
         }
 43  
 
 44  
         public void setEntryRefObjectId(String entryRefObjectId) {
 45  0
                 this.entryRefObjectId = entryRefObjectId;
 46  0
         }
 47  
 
 48  
         public void setCheckInDate(Date checkInDate) {
 49  0
                 this.checkInDate = checkInDate;
 50  0
         }
 51  
 
 52  
         public void setPosition(Integer position) {
 53  0
                 this.position = position;
 54  0
         }
 55  
         
 56  
         @Override
 57  
         public String getEntryRefObjectId() {
 58  0
                 return entryRefObjectId;
 59  
         }
 60  
 
 61  
         @Override
 62  
         public Date getCheckInDate() {
 63  0
                 return checkInDate;
 64  
         }
 65  
 
 66  
         @Override
 67  
         public Integer getPosition() {
 68  0
                 return position;
 69  
         }
 70  
 
 71  
         @Override
 72  
         public String getEntryRefObjectTypeKey() {
 73  0
                 return entryRefObjectTypeKey;
 74  
         }
 75  
 
 76  
 }