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 @Deprecated
31 @XmlRootElement(name = "updateValue", namespace = "http://student.kuali.org/poc/wsdl/test/my")
32 @XmlAccessorType(XmlAccessType.FIELD)
33 @XmlType(name = "updateValue", namespace = "http://student.kuali.org/poc/wsdl/test/my")
34 public class UpdateValue {
35
36 @XmlElement(name = "arg0")
37 private java.lang.String arg0;
38
39 @XmlElement(name = "arg1")
40 private java.lang.String arg1;
41
42
43
44
45 public java.lang.String getArg0() {
46 return arg0;
47 }
48
49
50
51
52
53 public void setArg0(java.lang.String arg0) {
54 this.arg0 = arg0;
55 }
56
57
58
59
60 public java.lang.String getArg1() {
61 return arg1;
62 }
63
64
65
66
67
68 public void setArg1(java.lang.String arg1) {
69 this.arg1 = arg1;
70 }
71
72 }