1 |
|
|
2 |
|
package org.kuali.student.common.dictionary.service.old.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 = "getObjectStructureResponse", namespace = "http://student.kuali.org/wsdl/dictionary") |
17 |
|
@XmlAccessorType(XmlAccessType.FIELD) |
18 |
|
@XmlType(name = "getObjectStructureResponse", namespace = "http://student.kuali.org/wsdl/dictionary") |
19 |
|
|
|
|
| 0% |
Uncovered Elements: 4 (4) |
Complexity: 2 |
Complexity Density: 1 |
|
20 |
|
public class GetObjectStructureResponse { |
21 |
|
|
22 |
|
@XmlElement(name = "return") |
23 |
|
private org.kuali.student.common.dictionary.old.dto.ObjectStructure _return; |
24 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
25 |
0
|
public org.kuali.student.common.dictionary.old.dto.ObjectStructure getReturn() {... |
26 |
0
|
return this._return; |
27 |
|
} |
28 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
29 |
0
|
public void setReturn(org.kuali.student.common.dictionary.old.dto.ObjectStructure new_return) {... |
30 |
0
|
this._return = new_return; |
31 |
|
} |
32 |
|
|
33 |
|
} |
34 |
|
|