1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
package org.kuali.student.lum.lrc.service.jaxws; |
17 |
|
|
18 |
|
import java.util.ArrayList; |
19 |
|
|
20 |
|
import javax.xml.bind.annotation.XmlAccessType; |
21 |
|
import javax.xml.bind.annotation.XmlAccessorType; |
22 |
|
import javax.xml.bind.annotation.XmlElement; |
23 |
|
import javax.xml.bind.annotation.XmlRootElement; |
24 |
|
import javax.xml.bind.annotation.XmlType; |
25 |
|
|
26 |
|
import org.kuali.student.lum.lrc.dto.GradeInfo; |
27 |
|
|
28 |
|
|
29 |
|
|
30 |
|
|
31 |
|
|
32 |
|
|
33 |
|
|
34 |
|
@XmlRootElement(name = "getGradesByKeyListResponse", namespace = "http://service.lrc.lum.student.kuali.org/") |
35 |
|
@XmlAccessorType(XmlAccessType.FIELD) |
36 |
|
@XmlType(name = "getGradesByKeyListResponse", namespace = "http://service.lrc.lum.student.kuali.org/") |
37 |
|
|
|
|
| 0% |
Uncovered Elements: 8 (8) |
Complexity: 3 |
Complexity Density: 0.75 |
|
38 |
|
public class GetGradesByKeyListResponse { |
39 |
|
|
40 |
|
@XmlElement(name = "return") |
41 |
|
private java.util.List<GradeInfo> _return; |
42 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
43 |
0
|
public java.util.List<GradeInfo> getReturn() {... |
44 |
0
|
if (_return == null) { |
45 |
0
|
_return = new ArrayList<GradeInfo>(0); |
46 |
|
} |
47 |
0
|
return this._return; |
48 |
|
} |
49 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
50 |
0
|
public void setReturn(java.util.List<GradeInfo> new_return) {... |
51 |
0
|
this._return = new_return; |
52 |
|
} |
53 |
|
|
54 |
|
} |
55 |
|
|