1 |
|
|
2 |
|
package org.kuali.student.lum.lu.service.jaxws; |
3 |
|
|
4 |
|
import javax.xml.bind.annotation.XmlAccessType; |
5 |
|
import javax.xml.bind.annotation.XmlAccessorType; |
6 |
|
import javax.xml.bind.annotation.XmlElement; |
7 |
|
import javax.xml.bind.annotation.XmlRootElement; |
8 |
|
import javax.xml.bind.annotation.XmlType; |
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
@XmlRootElement(name = "getCluSetTreeView", namespace = "http://student.kuali.org/wsdl/lu") |
17 |
|
@XmlAccessorType(XmlAccessType.FIELD) |
18 |
|
@XmlType(name = "getCluSetTreeView", namespace = "http://student.kuali.org/wsdl/lu") |
19 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (4) |
Complexity: 2 |
Complexity Density: 1 |
|
20 |
|
public class GetCluSetTreeView { |
21 |
|
|
22 |
|
@XmlElement(name = "cluSetId") |
23 |
|
private java.lang.String cluSetId; |
24 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
25 |
4
|
public java.lang.String getCluSetId() {... |
26 |
4
|
return this.cluSetId; |
27 |
|
} |
28 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
29 |
4
|
public void setCluSetId(java.lang.String newCluSetId) {... |
30 |
4
|
this.cluSetId = newCluSetId; |
31 |
|
} |
32 |
|
|
33 |
|
} |
34 |
|
|