Coverage Report - org.kuali.student.common.dictionary.dto.LookupConstraint
 
Classes in this File Line Coverage Branch Coverage Complexity
LookupConstraint
0%
0/5
N/A
1
 
 1  
 package org.kuali.student.common.dictionary.dto;
 2  
 
 3  
 import javax.xml.bind.annotation.XmlAccessType;
 4  
 import javax.xml.bind.annotation.XmlAccessorType;
 5  
 import javax.xml.bind.annotation.XmlElement;
 6  
 
 7  
 import org.kuali.student.common.validation.dto.ValidationResultInfo.ErrorLevel;
 8  
 
 9  
 
 10  
 
 11  
 @XmlAccessorType(XmlAccessType.FIELD)
 12  0
 public class LookupConstraint extends CommonLookup{
 13  
 
 14  
         private static final long serialVersionUID = 1L;
 15  
 
 16  0
         @XmlElement
 17  
         protected ErrorLevel errorLevel = ErrorLevel.ERROR;
 18  
 
 19  
         public ErrorLevel getErrorLevel() {
 20  0
                 return errorLevel;
 21  
         }
 22  
 
 23  
         public void setErrorLevel(ErrorLevel errorLevel) {
 24  0
                 this.errorLevel = errorLevel;
 25  0
         }
 26  
                 
 27  
 }