package net.brutex.sbm.wsclient; import java.util.ArrayList; import java.util.List; 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 Value complex type. * *

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

 * <complexType name="Value">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="displayValue" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="internalValue" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="uuid" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="extraValues" type="{urn:aewebservices71}ExtraValue" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Value", propOrder = { "displayValue", "internalValue", "uuid", "extraValues" }) public class Value { @XmlElementRef(name = "displayValue", namespace = "urn:aewebservices71", type = JAXBElement.class) protected JAXBElement displayValue; @XmlElementRef(name = "internalValue", namespace = "urn:aewebservices71", type = JAXBElement.class) protected JAXBElement internalValue; @XmlElementRef(name = "uuid", namespace = "urn:aewebservices71", type = JAXBElement.class) protected JAXBElement uuid; protected List extraValues; /** * Gets the value of the displayValue property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public JAXBElement getDisplayValue() { return displayValue; } /** * Sets the value of the displayValue property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public void setDisplayValue(JAXBElement value) { this.displayValue = ((JAXBElement ) value); } /** * Gets the value of the internalValue property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public JAXBElement getInternalValue() { return internalValue; } /** * Sets the value of the internalValue property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public void setInternalValue(JAXBElement value) { this.internalValue = ((JAXBElement ) value); } /** * Gets the value of the uuid property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public JAXBElement getUuid() { return uuid; } /** * Sets the value of the uuid property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public void setUuid(JAXBElement value) { this.uuid = ((JAXBElement ) value); } /** * Gets the value of the extraValues property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the extraValues property. * *

* For example, to add a new item, do as follows: *

     *    getExtraValues().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link ExtraValue } * * */ public List getExtraValues() { if (extraValues == null) { extraValues = new ArrayList(); } return this.extraValues; } }