Clover Coverage Report - KS Common Api 1.2
Coverage timestamp: Thu Jan 1 1970 00:00:00 UTC
../../../../../../img/srcFileCovDistChart0.png 0% of files have more coverage
6   42   6   1
0   32   1   6
6     1  
1    
 
  RequiredConstraint       Line # 10 6 0% 6 12 0% 0.0
 
No Tests
 
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    @XmlAccessorType(XmlAccessType.FIELD)
 
10    public class RequiredConstraint {
11    @XmlElement
12    protected String fieldPath;
13    @XmlElement
14    protected String fieldPathMessageKey;
15    @XmlElement
16    protected ErrorLevel errorLevel = ErrorLevel.ERROR;
17   
 
18  0 toggle public String getFieldPath() {
19  0 return fieldPath;
20    }
21   
 
22  0 toggle public void setFieldPath(String fieldPath) {
23  0 this.fieldPath = fieldPath;
24    }
25   
 
26  0 toggle public ErrorLevel getErrorLevel() {
27  0 return errorLevel;
28    }
29   
 
30  0 toggle public void setErrorLevel(ErrorLevel errorLevel) {
31  0 this.errorLevel = errorLevel;
32    }
33   
 
34  0 toggle public String getFieldPathMessageId() {
35  0 return fieldPathMessageKey;
36    }
37   
 
38  0 toggle public void setFieldPathMessageId(String fieldPathMessageKey) {
39  0 this.fieldPathMessageKey = fieldPathMessageKey;
40    }
41   
42    }