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.CreditInfo; |
27 | |
|
28 | |
|
29 | |
|
30 | |
|
31 | |
|
32 | |
|
33 | |
|
34 | |
@XmlRootElement(name = "getCreditsByKeyListResponse", namespace = "http://service.lrc.lum.student.kuali.org/") |
35 | |
@XmlAccessorType(XmlAccessType.FIELD) |
36 | |
@XmlType(name = "getCreditsByKeyListResponse", namespace = "http://service.lrc.lum.student.kuali.org/") |
37 | |
|
38 | 0 | public class GetCreditsByKeyListResponse { |
39 | |
|
40 | |
@XmlElement(name = "return") |
41 | |
private java.util.List<CreditInfo> _return; |
42 | |
|
43 | |
public java.util.List<CreditInfo> getReturn() { |
44 | 0 | if (_return == null) { |
45 | 0 | _return = new ArrayList<CreditInfo>(0); |
46 | |
} |
47 | 0 | return this._return; |
48 | |
} |
49 | |
|
50 | |
public void setReturn(java.util.List<CreditInfo> new_return) { |
51 | 0 | this._return = new_return; |
52 | 0 | } |
53 | |
|
54 | |
} |
55 | |
|