View as "text/plain" | Blame | Last modification | View Log | Download | RSS feed
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;
/**
* <p>Java class for Field complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <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>
* </pre>
*
*
*/
@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<String> fieldUUID;
@XmlElementRef(name = "name", namespace = "urn:aewebservices71", type = JAXBElement.class)
protected JAXBElement<String> name;
@XmlElementRef(name = "displayName", namespace = "urn:aewebservices71", type = JAXBElement.class)
protected JAXBElement<String> 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<String> 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<String> value) {
this.fieldUUID = ((JAXBElement<String> ) value);
}
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> 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<String> value) {
this.name = ((JAXBElement<String> ) value);
}
/**
* Gets the value of the displayName property.
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> 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<String> value) {
this.displayName = ((JAXBElement<String> ) 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;
}
}