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 UserExtended complex type.
12
 *
13
 * <p>The following schema fragment specifies the expected content contained within this class.
14
 *
15
 * <pre>
16
 * &lt;complexType name="UserExtended">
17
 *   &lt;complexContent>
18
 *     &lt;extension base="{urn:aewebservices71}UserWithPreferences">
19
 *       &lt;sequence>
20
 *         &lt;element name="phoneNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
21
 *         &lt;element name="locale" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
22
 *       &lt;/sequence>
23
 *     &lt;/extension>
24
 *   &lt;/complexContent>
25
 * &lt;/complexType>
26
 * </pre>
27
 *
28
 *
29
 */
30
@XmlAccessorType(XmlAccessType.FIELD)
31
@XmlType(name = "UserExtended", propOrder = {
32
    "phoneNumber",
33
    "locale"
34
})
35
public class UserExtended
36
    extends UserWithPreferences
37
{
38
39
 
40
    protected JAXBElement<String> phoneNumber;
41
    @XmlElementRef(name = "locale", namespace = "urn:aewebservices71", type = JAXBElement.class)
42
    protected JAXBElement<String> locale;
43
44
 
45
     * Gets the value of the phoneNumber property.
46
     *
47
     * @return
48
     *     possible object is
49
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
50
     *
51
     */
52
    public JAXBElement<String> getPhoneNumber() {
53
        return phoneNumber;
54
    }
55
56
 
57
     * Sets the value of the phoneNumber property.
58
     *
59
     * @param value
60
     *     allowed object is
61
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
62
     *
63
     */
64
    public void setPhoneNumber(JAXBElement<String> value) {
65
        this.phoneNumber = ((JAXBElement<String> ) value);
66
    }
67
68
 
69
     * Gets the value of the locale property.
70
     *
71
     * @return
72
     *     possible object is
73
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
74
     *
75
     */
76
    public JAXBElement<String> getLocale() {
77
        return locale;
78
    }
79
80
 
81
     * Sets the value of the locale property.
82
     *
83
     * @param value
84
     *     allowed object is
85
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
86
     *
87
     */
88
    public void setLocale(JAXBElement<String> value) {
89
        this.locale = ((JAXBElement<String> ) value);
90
    }
91
92
 
93