Coverage Report - org.kuali.student.enrollment.class1.lpr.model.ResultOptionEntity
 
Classes in this File Line Coverage Branch Coverage Complexity
ResultOptionEntity
0%
0/8
N/A
1
 
 1  
 package org.kuali.student.enrollment.class1.lpr.model;
 2  
 
 3  
 import javax.persistence.Embeddable;
 4  
 
 5  
 import org.kuali.student.lum.lu.dto.ResultOptionInfo;
 6  
 import org.kuali.student.r2.common.entity.MetaEntity;
 7  
 
 8  
 @Embeddable
 9  
 public class ResultOptionEntity extends MetaEntity {
 10  
 
 11  
     private String key;
 12  
 
 13  
     private String value;
 14  
 
 15  
     public String getKey() {
 16  0
         return key;
 17  
     }
 18  
 
 19  
     public void setKey(String key) {
 20  0
         this.key = key;
 21  0
     }
 22  
 
 23  
     public String getValue() {
 24  0
         return value;
 25  
     }
 26  
 
 27  
     public void setValue(String value) {
 28  0
         this.value = value;
 29  0
     }
 30  
 
 31  0
     public ResultOptionEntity(ResultOptionInfo lprTransactionItem) {
 32  
 
 33  0
     }
 34  
 
 35  
 }