Coverage Report - org.kuali.student.enrollment.class1.lpr.model.LprTransItemAttributeEntity
 
Classes in this File Line Coverage Branch Coverage Complexity
LprTransItemAttributeEntity
0%
0/6
N/A
1
 
 1  
 package org.kuali.student.enrollment.class1.lpr.model;
 2  
 
 3  
 import javax.persistence.Entity;
 4  
 import javax.persistence.JoinColumn;
 5  
 import javax.persistence.ManyToOne;
 6  
 import javax.persistence.Table;
 7  
 
 8  
 import org.kuali.student.r2.common.entity.BaseAttributeEntity;
 9  
 import org.kuali.student.r2.common.infc.Attribute;
 10  
 
 11  0
 @Entity
 12  
 @Table(name = "KSEN_LPR_TRANS_ITEM_ATTR")
 13  
 public class LprTransItemAttributeEntity extends BaseAttributeEntity<LprTransactionItemEntity> {
 14  
     @ManyToOne
 15  
     @JoinColumn(name = "OWNER")
 16  
     private LprTransactionItemEntity owner;
 17  
 
 18  
     public LprTransItemAttributeEntity(Attribute att) {
 19  0
         super(att);
 20  
 
 21  0
     }
 22  
 
 23  
     @Override
 24  
     public LprTransactionItemEntity getOwner() {
 25  0
         return this.owner;
 26  
     }
 27  
 
 28  
     @Override
 29  
     public void setOwner(LprTransactionItemEntity owner) {
 30  0
         this.owner = owner;
 31  
 
 32  0
     }
 33  
 
 34  
 }