1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
|
17 |
|
package org.kuali.student.lum.lo.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 = "createLoLoRelation", namespace = "http://student.kuali.org/wsdl/lo") |
32 |
|
@XmlAccessorType(XmlAccessType.FIELD) |
33 |
|
@XmlType(name = "createLoLoRelation", namespace = "http://student.kuali.org/wsdl/lo", propOrder = {"loId","relatedLoId","loLoRelationType","loLoRelationInfo"}) |
34 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (16) |
Complexity: 8 |
Complexity Density: 1 |
|
35 |
|
public class CreateLoLoRelation { |
36 |
|
|
37 |
|
@XmlElement(name = "loId") |
38 |
|
private java.lang.String loId; |
39 |
|
@XmlElement(name = "relatedLoId") |
40 |
|
private java.lang.String relatedLoId; |
41 |
|
@XmlElement(name = "loLoRelationType") |
42 |
|
private java.lang.String loLoRelationType; |
43 |
|
@XmlElement(name = "loLoRelationInfo") |
44 |
|
private org.kuali.student.lum.lo.dto.LoLoRelationInfo loLoRelationInfo; |
45 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
46 |
6
|
public java.lang.String getLoId() {... |
47 |
6
|
return this.loId; |
48 |
|
} |
49 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
50 |
6
|
public void setLoId(java.lang.String newLoId) {... |
51 |
6
|
this.loId = newLoId; |
52 |
|
} |
53 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
54 |
6
|
public java.lang.String getRelatedLoId() {... |
55 |
6
|
return this.relatedLoId; |
56 |
|
} |
57 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
58 |
6
|
public void setRelatedLoId(java.lang.String newRelatedLoId) {... |
59 |
6
|
this.relatedLoId = newRelatedLoId; |
60 |
|
} |
61 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
62 |
6
|
public java.lang.String getLoLoRelationType() {... |
63 |
6
|
return this.loLoRelationType; |
64 |
|
} |
65 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
66 |
6
|
public void setLoLoRelationType(java.lang.String newLoLoRelationType) {... |
67 |
6
|
this.loLoRelationType = newLoLoRelationType; |
68 |
|
} |
69 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
70 |
6
|
public org.kuali.student.lum.lo.dto.LoLoRelationInfo getLoLoRelationInfo() {... |
71 |
6
|
return this.loLoRelationInfo; |
72 |
|
} |
73 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
74 |
6
|
public void setLoLoRelationInfo(org.kuali.student.lum.lo.dto.LoLoRelationInfo newLoLoRelationInfo) {... |
75 |
6
|
this.loLoRelationInfo = newLoLoRelationInfo; |
76 |
|
} |
77 |
|
|
78 |
|
} |
79 |
|
|