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 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (16) |
Complexity: 8 |
Complexity Density: 1 |
|
35 |
|
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 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
46 |
1
|
public java.lang.String getLuiId() {... |
47 |
1
|
return this.luiId; |
48 |
|
} |
49 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
50 |
1
|
public void setLuiId(java.lang.String newLuiId) {... |
51 |
1
|
this.luiId = newLuiId; |
52 |
|
} |
53 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
54 |
1
|
public java.lang.String getRelatedLuiId() {... |
55 |
1
|
return this.relatedLuiId; |
56 |
|
} |
57 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
58 |
1
|
public void setRelatedLuiId(java.lang.String newRelatedLuiId) {... |
59 |
1
|
this.relatedLuiId = newRelatedLuiId; |
60 |
|
} |
61 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
62 |
1
|
public java.lang.String getLuLuRelationType() {... |
63 |
1
|
return this.luLuRelationType; |
64 |
|
} |
65 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
66 |
1
|
public void setLuLuRelationType(java.lang.String newLuLuRelationType) {... |
67 |
1
|
this.luLuRelationType = newLuLuRelationType; |
68 |
|
} |
69 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
70 |
1
|
public org.kuali.student.lum.lu.dto.LuiLuiRelationInfo getLuiLuiRelationInfo() {... |
71 |
1
|
return this.luiLuiRelationInfo; |
72 |
|
} |
73 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
74 |
1
|
public void setLuiLuiRelationInfo(org.kuali.student.lum.lu.dto.LuiLuiRelationInfo newLuiLuiRelationInfo) {... |
75 |
1
|
this.luiLuiRelationInfo = newLuiLuiRelationInfo; |
76 |
|
} |
77 |
|
|
78 |
|
} |
79 |
|
|