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 |
|
@XmlAccessorType(XmlAccessType.FIELD) |
|
|
| 0% |
Uncovered Elements: 16 (16) |
Complexity: 8 |
Complexity Density: 1 |
|
10 |
|
public class LookupConstraintParamMapping { |
11 |
|
@XmlElement |
12 |
|
protected String fieldPath; |
13 |
|
@XmlElement |
14 |
|
protected String paramKey; |
15 |
|
@XmlElement |
16 |
|
protected List<String> defaultValueList; |
17 |
|
@XmlElement |
18 |
|
protected String defaultValueString; |
19 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
20 |
0
|
public String getFieldPath() {... |
21 |
0
|
return fieldPath; |
22 |
|
} |
23 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
24 |
0
|
public void setFieldPath(String fieldPath) {... |
25 |
0
|
this.fieldPath = fieldPath; |
26 |
|
} |
27 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
28 |
0
|
public String getParamKey() {... |
29 |
0
|
return paramKey; |
30 |
|
} |
31 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
32 |
0
|
public void setParamKey(String paramKey) {... |
33 |
0
|
this.paramKey = paramKey; |
34 |
|
} |
35 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
36 |
0
|
public List<String> getDefaultValueList() {... |
37 |
0
|
return defaultValueList; |
38 |
|
} |
39 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
40 |
0
|
public void setDefaultValueList(List<String> defaultValueList) {... |
41 |
0
|
this.defaultValueList = defaultValueList; |
42 |
|
} |
43 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
44 |
0
|
public String getDefaultValueString() {... |
45 |
0
|
return defaultValueString; |
46 |
|
} |
47 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
48 |
0
|
public void setDefaultValueString(String defaultValueString) {... |
49 |
0
|
this.defaultValueString = defaultValueString; |
50 |
|
} |
51 |
|
} |