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