Coverage Report - org.kuali.student.enrollment.class1.lui.model.LuiLuiRelationAttributeEntity
 
Classes in this File Line Coverage Branch Coverage Complexity
LuiLuiRelationAttributeEntity
0%
0/9
N/A
1
 
 1  
 package org.kuali.student.enrollment.class1.lui.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.BaseAttributeEntityNew;
 9  
 import org.kuali.student.r2.common.infc.Attribute;
 10  
 
 11  0
 @Entity
 12  
 @Table(name = "KSEN_LUILUI_RELTN_ATTR")
 13  
 public class LuiLuiRelationAttributeEntity extends BaseAttributeEntityNew<LuiLuiRelationEntity> {
 14  
     
 15  
     @ManyToOne
 16  
     @JoinColumn(name = "OWNER_ID")
 17  
     private LuiLuiRelationEntity owner;
 18  
 
 19  0
     public LuiLuiRelationAttributeEntity(){}
 20  
     
 21  
     public LuiLuiRelationAttributeEntity(Attribute att) {
 22  0
         super(att);
 23  0
     }
 24  
     
 25  
     public LuiLuiRelationAttributeEntity(String key, String value) {
 26  0
         super(key, value);
 27  0
     }
 28  
 
 29  
     @Override
 30  
     public void setOwner(LuiLuiRelationEntity owner) {
 31  0
         this.owner = owner;
 32  
         
 33  0
     }
 34  
 
 35  
     @Override
 36  
     public LuiLuiRelationEntity getOwner() {
 37  0
         return owner;
 38  
     }
 39  
 }