1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
package org.kuali.student.common.dictionary.old.dto; |
17 |
|
|
18 |
|
import java.io.Serializable; |
19 |
|
import java.util.List; |
20 |
|
|
21 |
|
import javax.xml.bind.annotation.XmlAccessType; |
22 |
|
import javax.xml.bind.annotation.XmlAccessorType; |
23 |
|
import javax.xml.bind.annotation.XmlAttribute; |
24 |
|
import javax.xml.bind.annotation.XmlElement; |
25 |
|
|
26 |
|
|
27 |
|
|
28 |
|
@XmlAccessorType(XmlAccessType.FIELD) |
|
|
| 0% |
Uncovered Elements: 12 (12) |
Complexity: 6 |
Complexity Density: 1 |
|
29 |
|
public class CaseConstraint implements Serializable { |
30 |
|
|
31 |
|
private static final long serialVersionUID = 1L; |
32 |
|
|
33 |
|
@XmlElement(name = "when") |
34 |
|
protected List<WhenConstraint> whenConstraint; |
35 |
|
|
36 |
|
@XmlAttribute |
37 |
|
protected String field; |
38 |
|
|
39 |
|
@XmlAttribute |
40 |
|
protected String operator; |
41 |
|
|
42 |
|
|
43 |
|
|
44 |
|
@return |
45 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
46 |
0
|
public List<WhenConstraint> getWhenConstraint() {... |
47 |
0
|
return whenConstraint; |
48 |
|
} |
49 |
|
|
50 |
|
|
51 |
|
@param |
52 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
53 |
0
|
public void setWhenConstraint(List<WhenConstraint> whenConstraint) {... |
54 |
0
|
this.whenConstraint = whenConstraint; |
55 |
|
} |
56 |
|
|
57 |
|
|
58 |
|
@return |
59 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
60 |
0
|
public String getField() {... |
61 |
0
|
return field; |
62 |
|
} |
63 |
|
|
64 |
|
|
65 |
|
@param |
66 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
67 |
0
|
public void setField(String field) {... |
68 |
0
|
this.field = field; |
69 |
|
} |
70 |
|
|
71 |
|
|
72 |
|
@return |
73 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
74 |
0
|
public String getOperator() {... |
75 |
0
|
return operator; |
76 |
|
} |
77 |
|
|
78 |
|
|
79 |
|
@param |
80 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
81 |
0
|
public void setOperator(String operator) {... |
82 |
0
|
this.operator = operator; |
83 |
|
} |
84 |
|
} |