package net.brutex.sbm.wsclient; import java.math.BigInteger; 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 NameValue complex type. * *

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

 * <complexType name="NameValue">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
 *         <element name="uuid" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="setValueBy" type="{urn:aewebservices71}Set-Value-By" minOccurs="0"/>
 *         <element name="setValueMethod" type="{urn:aewebservices71}Set-Value-Method" minOccurs="0"/>
 *         <choice>
 *           <element name="value" type="{urn:aewebservices71}Value" minOccurs="0"/>
 *           <element name="values" type="{urn:aewebservices71}Value" maxOccurs="unbounded" minOccurs="0"/>
 *         </choice>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "NameValue", propOrder = { "name", "id", "uuid", "setValueBy", "setValueMethod", "value", "values" }) public class NameValue { @XmlElementRef(name = "name", namespace = "urn:aewebservices71", type = JAXBElement.class) protected JAXBElement name; protected BigInteger id; @XmlElementRef(name = "uuid", namespace = "urn:aewebservices71", type = JAXBElement.class) protected JAXBElement uuid; @XmlElementRef(name = "setValueBy", namespace = "urn:aewebservices71", type = JAXBElement.class) protected JAXBElement setValueBy; @XmlElementRef(name = "setValueMethod", namespace = "urn:aewebservices71", type = JAXBElement.class) protected JAXBElement setValueMethod; @XmlElementRef(name = "value", namespace = "urn:aewebservices71", type = JAXBElement.class) protected JAXBElement value; protected List values; /** * Gets the value of the name property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public JAXBElement getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public void setName(JAXBElement value) { this.name = ((JAXBElement ) value); } /** * Gets the value of the id property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link BigInteger } * */ public void setId(BigInteger value) { this.id = 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 setValueBy property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link SetValueBy }{@code >} * */ public JAXBElement getSetValueBy() { return setValueBy; } /** * Sets the value of the setValueBy property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link SetValueBy }{@code >} * */ public void setSetValueBy(JAXBElement value) { this.setValueBy = ((JAXBElement ) value); } /** * Gets the value of the setValueMethod property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link SetValueMethod }{@code >} * */ public JAXBElement getSetValueMethod() { return setValueMethod; } /** * Sets the value of the setValueMethod property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link SetValueMethod }{@code >} * */ public void setSetValueMethod(JAXBElement value) { this.setValueMethod = ((JAXBElement ) value); } /** * Gets the value of the value property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link Value }{@code >} * */ public JAXBElement getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link Value }{@code >} * */ public void setValue(JAXBElement value) { this.value = ((JAXBElement ) value); } /** * Gets the value of the values 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 values property. * *

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

     *    getValues().add(newItem);
     * 
* * *

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