Subversion Repositories XServices

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
30 brianR 1
 
2
3
 
4
import javax.xml.bind.annotation.XmlAccessType;
5
import javax.xml.bind.annotation.XmlAccessorType;
6
import javax.xml.bind.annotation.XmlElementRef;
7
import javax.xml.bind.annotation.XmlRootElement;
8
import javax.xml.bind.annotation.XmlType;
9
10
 
11
 
12
 * <p>Java class for anonymous complex type.
13
 *
14
 * <p>The following schema fragment specifies the expected content contained within this class.
15
 *
16
 * <pre>
17
 * &lt;complexType>
18
 *   &lt;complexContent>
19
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
20
 *       &lt;sequence>
21
 *         &lt;element name="auth" type="{urn:aewebservices71}Auth" minOccurs="0"/>
22
 *         &lt;element name="userId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
23
 *       &lt;/sequence>
24
 *     &lt;/restriction>
25
 *   &lt;/complexContent>
26
 * &lt;/complexType>
27
 * </pre>
28
 *
29
 *
30
 */
31
@XmlAccessorType(XmlAccessType.FIELD)
32
@XmlType(name = "", propOrder = {
33
    "auth",
34
    "userId"
35
})
36
@XmlRootElement(name = "GetUser")
37
public class GetUser {
38
39
 
40
    protected JAXBElement<Auth> auth;
41
    @XmlElementRef(name = "userId", namespace = "urn:aewebservices71", type = JAXBElement.class)
42
    protected JAXBElement<String> userId;
43
44
 
45
     * Gets the value of the auth property.
46
     *
47
     * @return
48
     *     possible object is
49
     *     {@link JAXBElement }{@code <}{@link Auth }{@code >}
50
     *
51
     */
52
    public JAXBElement<Auth> getAuth() {
53
        return auth;
54
    }
55
56
 
57
     * Sets the value of the auth property.
58
     *
59
     * @param value
60
     *     allowed object is
61
     *     {@link JAXBElement }{@code <}{@link Auth }{@code >}
62
     *
63
     */
64
    public void setAuth(JAXBElement<Auth> value) {
65
        this.auth = ((JAXBElement<Auth> ) value);
66
    }
67
68
 
69
     * Gets the value of the userId property.
70
     *
71
     * @return
72
     *     possible object is
73
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
74
     *
75
     */
76
    public JAXBElement<String> getUserId() {
77
        return userId;
78
    }
79
80
 
81
     * Sets the value of the userId property.
82
     *
83
     * @param value
84
     *     allowed object is
85
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
86
     *
87
     */
88
    public void setUserId(JAXBElement<String> value) {
89
        this.userId = ((JAXBElement<String> ) value);
90
    }
91
92
 
93