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
38 public class GetGradesByKeyListResponse {
39
40 @XmlElement(name = "return")
41 private java.util.List<GradeInfo> _return;
42
43 public java.util.List<GradeInfo> getReturn() {
44 if (_return == null) {
45 _return = new ArrayList<GradeInfo>(0);
46 }
47 return this._return;
48 }
49
50 public void setReturn(java.util.List<GradeInfo> new_return) {
51 this._return = new_return;
52 }
53
54 }
55