1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
package org.kuali.student.core.search.dto; |
17 |
|
import java.io.Serializable; |
18 |
|
|
19 |
|
import javax.xml.bind.annotation.XmlAccessType; |
20 |
|
import javax.xml.bind.annotation.XmlAccessorType; |
21 |
|
import javax.xml.bind.annotation.XmlAttribute; |
22 |
|
import javax.xml.bind.annotation.XmlElement; |
23 |
|
|
24 |
|
import org.kuali.student.core.dictionary.old.dto.FieldDescriptor; |
25 |
|
|
26 |
|
@XmlAccessorType(XmlAccessType.FIELD) |
|
|
| 0% |
Uncovered Elements: 12 (12) |
Complexity: 6 |
Complexity Density: 1 |
|
27 |
|
public class QueryParamInfo implements Serializable { |
28 |
|
private static final long serialVersionUID = 1L; |
29 |
|
@XmlElement(namespace="http://student.kuali.org/wsdl/dictionary") |
30 |
|
private FieldDescriptor fieldDescriptor; |
31 |
|
@XmlAttribute |
32 |
|
private String key; |
33 |
|
@XmlAttribute |
34 |
|
private boolean optional; |
35 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
36 |
0
|
public FieldDescriptor getFieldDescriptor(){... |
37 |
0
|
return fieldDescriptor; |
38 |
|
} |
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
39 |
0
|
public void setFieldDescriptor(FieldDescriptor fieldDescriptor){... |
40 |
0
|
this.fieldDescriptor = fieldDescriptor; |
41 |
|
} |
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
42 |
0
|
public String getKey(){... |
43 |
0
|
return key; |
44 |
|
} |
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
45 |
0
|
public void setKey(String key){... |
46 |
0
|
this.key = key; |
47 |
|
} |
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
48 |
0
|
public boolean isOptional() {... |
49 |
0
|
return optional; |
50 |
|
} |
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
51 |
0
|
public void setOptional(boolean optional) {... |
52 |
0
|
this.optional = optional; |
53 |
|
} |
54 |
|
} |