| 1 |
|
package org.kuali.student.common.dictionary.dto; |
| 2 |
|
|
| 3 |
|
import java.io.Serializable; |
| 4 |
|
import java.util.List; |
| 5 |
|
|
| 6 |
|
|
| 7 |
|
|
|
|
|
| 78.6% |
Uncovered Elements: 6 (28) |
Complexity: 14 |
Complexity Density: 1 |
|
| 8 |
|
public class CommonLookup implements Serializable { |
| 9 |
|
|
| 10 |
|
private static final long serialVersionUID = 1L; |
| 11 |
|
|
| 12 |
|
private String id; |
| 13 |
|
private String name; |
| 14 |
|
private String desc; |
| 15 |
|
private String searchTypeId; |
| 16 |
|
private String resultReturnKey; |
| 17 |
|
private String searchParamIdKey; |
| 18 |
|
private List<CommonLookupParam> params; |
| 19 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 20 |
14
|
public String getSearchTypeId() {... |
| 21 |
14
|
return searchTypeId; |
| 22 |
|
} |
| 23 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 24 |
149
|
public void setSearchTypeId(String searchTypeId) {... |
| 25 |
149
|
this.searchTypeId = searchTypeId; |
| 26 |
|
} |
| 27 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 28 |
10
|
public String getResultReturnKey() {... |
| 29 |
10
|
return resultReturnKey; |
| 30 |
|
} |
| 31 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 32 |
136
|
public void setResultReturnKey(String resultReturnKey) {... |
| 33 |
136
|
this.resultReturnKey = resultReturnKey; |
| 34 |
|
} |
| 35 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 36 |
28
|
public List<CommonLookupParam> getParams() {... |
| 37 |
28
|
return params; |
| 38 |
|
} |
| 39 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 40 |
145
|
public void setParams(List<CommonLookupParam> params) {... |
| 41 |
145
|
this.params = params; |
| 42 |
|
} |
| 43 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 44 |
0
|
public String getId() {... |
| 45 |
0
|
return id; |
| 46 |
|
} |
| 47 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 48 |
136
|
public void setId(String id) {... |
| 49 |
136
|
this.id = id; |
| 50 |
|
} |
| 51 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 52 |
0
|
public String getName() {... |
| 53 |
0
|
return name; |
| 54 |
|
} |
| 55 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 56 |
128
|
public void setName(String name) {... |
| 57 |
128
|
this.name = name; |
| 58 |
|
} |
| 59 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 60 |
0
|
public String getDesc() {... |
| 61 |
0
|
return desc; |
| 62 |
|
} |
| 63 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 64 |
128
|
public void setDesc(String desc) {... |
| 65 |
128
|
this.desc = desc; |
| 66 |
|
} |
| 67 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 68 |
22
|
public String getSearchParamIdKey() {... |
| 69 |
22
|
return searchParamIdKey; |
| 70 |
|
} |
| 71 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 72 |
96
|
public void setSearchParamIdKey(String searchParamIdKey) {... |
| 73 |
96
|
this.searchParamIdKey = searchParamIdKey; |
| 74 |
|
} |
| 75 |
|
|
| 76 |
|
} |