1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
|
17 | |
package org.kuali.student.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 | |
|
26 | |
|
27 | |
|
28 | |
|
29 | |
|
30 | |
|
31 | |
@XmlRootElement(name = "createLuiLuiRelation", namespace = "http://student.kuali.org/wsdl/lu") |
32 | |
@XmlAccessorType(XmlAccessType.FIELD) |
33 | |
@XmlType(name = "createLuiLuiRelation", namespace = "http://student.kuali.org/wsdl/lu", propOrder = {"luiId","relatedLuiId","luLuRelationType","luiLuiRelationInfo"}) |
34 | |
|
35 | 0 | public class CreateLuiLuiRelation { |
36 | |
|
37 | |
@XmlElement(name = "luiId") |
38 | |
private java.lang.String luiId; |
39 | |
@XmlElement(name = "relatedLuiId") |
40 | |
private java.lang.String relatedLuiId; |
41 | |
@XmlElement(name = "luLuRelationType") |
42 | |
private java.lang.String luLuRelationType; |
43 | |
@XmlElement(name = "luiLuiRelationInfo") |
44 | |
private org.kuali.student.lum.lu.dto.LuiLuiRelationInfo luiLuiRelationInfo; |
45 | |
|
46 | |
public java.lang.String getLuiId() { |
47 | 0 | return this.luiId; |
48 | |
} |
49 | |
|
50 | |
public void setLuiId(java.lang.String newLuiId) { |
51 | 0 | this.luiId = newLuiId; |
52 | 0 | } |
53 | |
|
54 | |
public java.lang.String getRelatedLuiId() { |
55 | 0 | return this.relatedLuiId; |
56 | |
} |
57 | |
|
58 | |
public void setRelatedLuiId(java.lang.String newRelatedLuiId) { |
59 | 0 | this.relatedLuiId = newRelatedLuiId; |
60 | 0 | } |
61 | |
|
62 | |
public java.lang.String getLuLuRelationType() { |
63 | 0 | return this.luLuRelationType; |
64 | |
} |
65 | |
|
66 | |
public void setLuLuRelationType(java.lang.String newLuLuRelationType) { |
67 | 0 | this.luLuRelationType = newLuLuRelationType; |
68 | 0 | } |
69 | |
|
70 | |
public org.kuali.student.lum.lu.dto.LuiLuiRelationInfo getLuiLuiRelationInfo() { |
71 | 0 | return this.luiLuiRelationInfo; |
72 | |
} |
73 | |
|
74 | |
public void setLuiLuiRelationInfo(org.kuali.student.lum.lu.dto.LuiLuiRelationInfo newLuiLuiRelationInfo) { |
75 | 0 | this.luiLuiRelationInfo = newLuiLuiRelationInfo; |
76 | 0 | } |
77 | |
|
78 | |
} |
79 | |
|