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

Java class for Field complex type. * *

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

 * <complexType name="Field">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="fieldID" type="{http://www.w3.org/2001/XMLSchema}integer"/>
 *         <element name="fieldUUID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="displayName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="fieldType" type="{urn:aewebservices71}Field-Type"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Field", propOrder = { "fieldID", "fieldUUID", "name", "displayName", "fieldType" }) public class Field { @XmlElement(required = true) protected BigInteger fieldID; @XmlElementRef(name = "fieldUUID", namespace = "urn:aewebservices71", type = JAXBElement.class) protected JAXBElement fieldUUID; @XmlElementRef(name = "name", namespace = "urn:aewebservices71", type = JAXBElement.class) protected JAXBElement name; @XmlElementRef(name = "displayName", namespace = "urn:aewebservices71", type = JAXBElement.class) protected JAXBElement displayName; @XmlElement(required = true) protected FieldType fieldType; /** * Gets the value of the fieldID property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getFieldID() { return fieldID; } /** * Sets the value of the fieldID property. * * @param value * allowed object is * {@link BigInteger } * */ public void setFieldID(BigInteger value) { this.fieldID = value; } /** * Gets the value of the fieldUUID property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public JAXBElement getFieldUUID() { return fieldUUID; } /** * Sets the value of the fieldUUID property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public void setFieldUUID(JAXBElement value) { this.fieldUUID = ((JAXBElement ) value); } /** * 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 displayName property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public JAXBElement getDisplayName() { return displayName; } /** * Sets the value of the displayName property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public void setDisplayName(JAXBElement value) { this.displayName = ((JAXBElement ) value); } /** * Gets the value of the fieldType property. * * @return * possible object is * {@link FieldType } * */ public FieldType getFieldType() { return fieldType; } /** * Sets the value of the fieldType property. * * @param value * allowed object is * {@link FieldType } * */ public void setFieldType(FieldType value) { this.fieldType = value; } }