1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
package org.kuali.student.common.search.dto; |
17 |
|
|
18 |
|
import java.io.Serializable; |
19 |
|
|
20 |
|
import javax.xml.bind.annotation.XmlAccessType; |
21 |
|
import javax.xml.bind.annotation.XmlAccessorType; |
22 |
|
|
23 |
|
@XmlAccessorType(XmlAccessType.FIELD) |
|
|
| 100% |
Uncovered Elements: 0 (12) |
Complexity: 6 |
Complexity Density: 1 |
|
24 |
|
public class JoinResultMappingInfo implements Serializable { |
25 |
|
private static final long serialVersionUID = 1L; |
26 |
|
private String subSearchKey; |
27 |
|
private String subSearchResultParam; |
28 |
|
private String resultParam; |
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
29 |
16
|
public String getSubSearchKey() {... |
30 |
16
|
return subSearchKey; |
31 |
|
} |
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
32 |
16
|
public void setSubSearchKey(String subSearchKey) {... |
33 |
16
|
this.subSearchKey = subSearchKey; |
34 |
|
} |
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
35 |
12
|
public String getSubSearchResultParam() {... |
36 |
12
|
return subSearchResultParam; |
37 |
|
} |
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
38 |
16
|
public void setSubSearchResultParam(String subSearchResultParam) {... |
39 |
16
|
this.subSearchResultParam = subSearchResultParam; |
40 |
|
} |
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
41 |
8
|
public String getResultParam() {... |
42 |
8
|
return resultParam; |
43 |
|
} |
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
44 |
16
|
public void setResultParam(String resultParam) {... |
45 |
16
|
this.resultParam = resultParam; |
46 |
|
} |
47 |
|
} |