package net.brutex.sbm.wsclient; import javax.xml.bind.JAXBElement; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElementRef; import javax.xml.bind.annotation.XmlType; /** *

Java class for UserExtended complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="UserExtended">
 *   <complexContent>
 *     <extension base="{urn:aewebservices71}UserWithPreferences">
 *       <sequence>
 *         <element name="phoneNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="locale" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "UserExtended", propOrder = { "phoneNumber", "locale" }) public class UserExtended extends UserWithPreferences { @XmlElementRef(name = "phoneNumber", namespace = "urn:aewebservices71", type = JAXBElement.class) protected JAXBElement phoneNumber; @XmlElementRef(name = "locale", namespace = "urn:aewebservices71", type = JAXBElement.class) protected JAXBElement locale; /** * Gets the value of the phoneNumber property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public JAXBElement getPhoneNumber() { return phoneNumber; } /** * Sets the value of the phoneNumber property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public void setPhoneNumber(JAXBElement value) { this.phoneNumber = ((JAXBElement ) value); } /** * Gets the value of the locale property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public JAXBElement getLocale() { return locale; } /** * Sets the value of the locale property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public void setLocale(JAXBElement value) { this.locale = ((JAXBElement ) value); } }