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) |
|
|
| 0% |
Uncovered Elements: 12 (12) |
Complexity: 6 |
Complexity Density: 1 |
|
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 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
18 |
0
|
public String getFieldPath() {... |
19 |
0
|
return fieldPath; |
20 |
|
} |
21 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
22 |
0
|
public void setFieldPath(String fieldPath) {... |
23 |
0
|
this.fieldPath = fieldPath; |
24 |
|
} |
25 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
26 |
0
|
public ErrorLevel getErrorLevel() {... |
27 |
0
|
return errorLevel; |
28 |
|
} |
29 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
30 |
0
|
public void setErrorLevel(ErrorLevel errorLevel) {... |
31 |
0
|
this.errorLevel = errorLevel; |
32 |
|
} |
33 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
34 |
0
|
public String getFieldPathMessageId() {... |
35 |
0
|
return fieldPathMessageKey; |
36 |
|
} |
37 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
38 |
0
|
public void setFieldPathMessageId(String fieldPathMessageKey) {... |
39 |
0
|
this.fieldPathMessageKey = fieldPathMessageKey; |
40 |
|
} |
41 |
|
|
42 |
|
} |