1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
package org.kuali.student.common_test_tester.support.jaxws; |
17 |
|
|
18 |
|
import javax.xml.bind.annotation.XmlAccessType; |
19 |
|
import javax.xml.bind.annotation.XmlAccessorType; |
20 |
|
import javax.xml.bind.annotation.XmlElement; |
21 |
|
import javax.xml.bind.annotation.XmlRootElement; |
22 |
|
import javax.xml.bind.annotation.XmlType; |
23 |
|
|
24 |
|
|
25 |
|
|
26 |
|
|
27 |
|
|
28 |
|
|
29 |
|
|
30 |
|
@XmlRootElement(name = "updateValue", namespace = "http://student.kuali.org/poc/wsdl/test/my") |
31 |
|
@XmlAccessorType(XmlAccessType.FIELD) |
32 |
|
@XmlType(name = "updateValue", namespace = "http://student.kuali.org/poc/wsdl/test/my") |
|
|
| 100% |
Uncovered Elements: 0 (8) |
Complexity: 4 |
Complexity Density: 1 |
|
33 |
|
public class UpdateValue { |
34 |
|
|
35 |
|
@XmlElement(name = "arg0") |
36 |
|
private java.lang.String arg0; |
37 |
|
|
38 |
|
@XmlElement(name = "arg1") |
39 |
|
private java.lang.String arg1; |
40 |
|
|
41 |
|
|
42 |
|
@return |
43 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
44 |
1
|
public java.lang.String getArg0() {... |
45 |
1
|
return arg0; |
46 |
|
} |
47 |
|
|
48 |
|
|
49 |
|
@param |
50 |
|
|
51 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
52 |
1
|
public void setArg0(java.lang.String arg0) {... |
53 |
1
|
this.arg0 = arg0; |
54 |
|
} |
55 |
|
|
56 |
|
|
57 |
|
@return |
58 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
59 |
1
|
public java.lang.String getArg1() {... |
60 |
1
|
return arg1; |
61 |
|
} |
62 |
|
|
63 |
|
|
64 |
|
@param |
65 |
|
|
66 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
67 |
1
|
public void setArg1(java.lang.String arg1) {... |
68 |
1
|
this.arg1 = arg1; |
69 |
|
} |
70 |
|
|
71 |
|
} |