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.XmlType;
8
9
 
10
 
11
 * <p>Java class for Auth complex type.
12
 *
13
 * <p>The following schema fragment specifies the expected content contained within this class.
14
 *
15
 * <pre>
16
 * &lt;complexType name="Auth">
17
 *   &lt;complexContent>
18
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
19
 *       &lt;sequence>
20
 *         &lt;element name="userId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
21
 *         &lt;element name="password" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
22
 *         &lt;element name="hostname" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
23
 *         &lt;element name="loginAsUserId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
24
 *       &lt;/sequence>
25
 *     &lt;/restriction>
26
 *   &lt;/complexContent>
27
 * &lt;/complexType>
28
 * </pre>
29
 *
30
 *
31
 */
32
@XmlAccessorType(XmlAccessType.FIELD)
33
@XmlType(name = "Auth", propOrder = {
34
    "userId",
35
    "password",
36
    "hostname",
37
    "loginAsUserId"
38
})
39
public class Auth {
40
41
 
42
    protected JAXBElement<String> userId;
43
    @XmlElementRef(name = "password", namespace = "urn:aewebservices71", type = JAXBElement.class)
44
    protected JAXBElement<String> password;
45
    @XmlElementRef(name = "hostname", namespace = "urn:aewebservices71", type = JAXBElement.class)
46
    protected JAXBElement<String> hostname;
47
    @XmlElementRef(name = "loginAsUserId", namespace = "urn:aewebservices71", type = JAXBElement.class)
48
    protected JAXBElement<String> loginAsUserId;
49
50
 
51
     * Gets the value of the userId property.
52
     *
53
     * @return
54
     *     possible object is
55
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
56
     *
57
     */
58
    public JAXBElement<String> getUserId() {
59
        return userId;
60
    }
61
62
 
63
     * Sets the value of the userId property.
64
     *
65
     * @param value
66
     *     allowed object is
67
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
68
     *
69
     */
70
    public void setUserId(JAXBElement<String> value) {
71
        this.userId = ((JAXBElement<String> ) value);
72
    }
73
74
 
75
     * Gets the value of the password property.
76
     *
77
     * @return
78
     *     possible object is
79
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
80
     *
81
     */
82
    public JAXBElement<String> getPassword() {
83
        return password;
84
    }
85
86
 
87
     * Sets the value of the password property.
88
     *
89
     * @param value
90
     *     allowed object is
91
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
92
     *
93
     */
94
    public void setPassword(JAXBElement<String> value) {
95
        this.password = ((JAXBElement<String> ) value);
96
    }
97
98
 
99
     * Gets the value of the hostname property.
100
     *
101
     * @return
102
     *     possible object is
103
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
104
     *
105
     */
106
    public JAXBElement<String> getHostname() {
107
        return hostname;
108
    }
109
110
 
111
     * Sets the value of the hostname property.
112
     *
113
     * @param value
114
     *     allowed object is
115
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
116
     *
117
     */
118
    public void setHostname(JAXBElement<String> value) {
119
        this.hostname = ((JAXBElement<String> ) value);
120
    }
121
122
 
123
     * Gets the value of the loginAsUserId property.
124
     *
125
     * @return
126
     *     possible object is
127
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
128
     *
129
     */
130
    public JAXBElement<String> getLoginAsUserId() {
131
        return loginAsUserId;
132
    }
133
134
 
135
     * Sets the value of the loginAsUserId property.
136
     *
137
     * @param value
138
     *     allowed object is
139
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
140
     *
141
     */
142
    public void setLoginAsUserId(JAXBElement<String> value) {
143
        this.loginAsUserId = ((JAXBElement<String> ) value);
144
    }
145
146
 
147