Clover Coverage Report - KS Common Api 1.2.1-SNAPSHOT
Coverage timestamp: Wed Dec 31 1969 19:00:00 EST
../../../../../../img/srcFileCovDistChart0.png 0% of files have more coverage
10   63   10   1
0   49   1   10
10     1  
1    
 
  MustOccurConstraint       Line # 12 10 0% 10 20 0% 0.0
 
No Tests
 
1    package org.kuali.student.common.dictionary.dto;
2   
3    import java.util.List;
4   
5    import javax.xml.bind.annotation.XmlAccessType;
6    import javax.xml.bind.annotation.XmlAccessorType;
7    import javax.xml.bind.annotation.XmlElement;
8   
9    import org.kuali.student.common.validation.dto.ValidationResultInfo.ErrorLevel;
10   
11    @XmlAccessorType(XmlAccessType.FIELD)
 
12    public class MustOccurConstraint {
13    @XmlElement
14    private List<RequiredConstraint> requiredFields;
15    @XmlElement
16    private List<MustOccurConstraint> occurs;
17    @XmlElement
18    private Integer min;
19    @XmlElement
20    private Integer max;
21    @XmlElement
22    private ErrorLevel errorLevel = ErrorLevel.ERROR;
23   
 
24  0 toggle public List<RequiredConstraint> getRequiredFields() {
25  0 return requiredFields;
26    }
27   
 
28  0 toggle public void setRequiredFields(List<RequiredConstraint> requiredFields) {
29  0 this.requiredFields = requiredFields;
30    }
31   
 
32  0 toggle public List<MustOccurConstraint> getOccurs() {
33  0 return occurs;
34    }
35   
 
36  0 toggle public void setOccurs(List<MustOccurConstraint> occurs) {
37  0 this.occurs = occurs;
38    }
39   
 
40  0 toggle public Integer getMin() {
41  0 return min;
42    }
43   
 
44  0 toggle public void setMin(Integer min) {
45  0 this.min = min;
46    }
47   
 
48  0 toggle public Integer getMax() {
49  0 return max;
50    }
51   
 
52  0 toggle public void setMax(Integer max) {
53  0 this.max = max;
54    }
55   
 
56  0 toggle public ErrorLevel getErrorLevel() {
57  0 return errorLevel;
58    }
59   
 
60  0 toggle public void setErrorLevel(ErrorLevel errorLevel) {
61  0 this.errorLevel = errorLevel;
62    }
63    }