Subversion Repositories XServices

Rev

Rev 30 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
30 brianR 1
 
2
3
 
4
import javax.xml.bind.JAXBElement;
5
import javax.xml.bind.annotation.XmlAccessType;
6
import javax.xml.bind.annotation.XmlAccessorType;
7
import javax.xml.bind.annotation.XmlElement;
8
import javax.xml.bind.annotation.XmlElementRef;
9
import javax.xml.bind.annotation.XmlType;
10
11
 
12
 
13
 * <p>Java class for Field complex type.
14
 *
15
 * <p>The following schema fragment specifies the expected content contained within this class.
16
 *
17
 * <pre>
18
 * &lt;complexType name="Field">
19
 *   &lt;complexContent>
20
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21
 *       &lt;sequence>
22
 *         &lt;element name="fieldID" type="{http://www.w3.org/2001/XMLSchema}integer"/>
23
 *         &lt;element name="fieldUUID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
24
 *         &lt;element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
25
 *         &lt;element name="displayName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
26
 *         &lt;element name="fieldType" type="{urn:aewebservices71}Field-Type"/>
27
 *       &lt;/sequence>
28
 *     &lt;/restriction>
29
 *   &lt;/complexContent>
30
 * &lt;/complexType>
31
 * </pre>
32
 *
33
 *
34
 */
35
@XmlAccessorType(XmlAccessType.FIELD)
36
@XmlType(name = "Field", propOrder = {
37
    "fieldID",
38
    "fieldUUID",
39
    "name",
40
    "displayName",
41
    "fieldType"
42
})
43
public class Field {
44
45
 
46
    protected BigInteger fieldID;
47
    @XmlElementRef(name = "fieldUUID", namespace = "urn:aewebservices71", type = JAXBElement.class)
48
    protected JAXBElement<String> fieldUUID;
49
    @XmlElementRef(name = "name", namespace = "urn:aewebservices71", type = JAXBElement.class)
50
    protected JAXBElement<String> name;
51
    @XmlElementRef(name = "displayName", namespace = "urn:aewebservices71", type = JAXBElement.class)
52
    protected JAXBElement<String> displayName;
53
    @XmlElement(required = true)
54
    protected FieldType fieldType;
55
56
 
57
     * Gets the value of the fieldID property.
58
     *
59
     * @return
60
     *     possible object is
61
     *     {@link BigInteger }
62
     *
63
     */
64
    public BigInteger getFieldID() {
65
        return fieldID;
66
    }
67
68
 
69
     * Sets the value of the fieldID property.
70
     *
71
     * @param value
72
     *     allowed object is
73
     *     {@link BigInteger }
74
     *
75
     */
76
    public void setFieldID(BigInteger value) {
77
        this.fieldID = value;
78
    }
79
80
 
81
     * Gets the value of the fieldUUID property.
82
     *
83
     * @return
84
     *     possible object is
85
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
86
     *
87
     */
88
    public JAXBElement<String> getFieldUUID() {
89
        return fieldUUID;
90
    }
91
92
 
93
     * Sets the value of the fieldUUID property.
94
     *
95
     * @param value
96
     *     allowed object is
97
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
98
     *
99
     */
100
    public void setFieldUUID(JAXBElement<String> value) {
101
        this.fieldUUID = ((JAXBElement<String> ) value);
102
    }
103
104
 
105
     * Gets the value of the name property.
106
     *
107
     * @return
108
     *     possible object is
109
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
110
     *
111
     */
112
    public JAXBElement<String> getName() {
113
        return name;
114
    }
115
116
 
117
     * Sets the value of the name property.
118
     *
119
     * @param value
120
     *     allowed object is
121
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
122
     *
123
     */
124
    public void setName(JAXBElement<String> value) {
125
        this.name = ((JAXBElement<String> ) value);
126
    }
127
128
 
129
     * Gets the value of the displayName property.
130
     *
131
     * @return
132
     *     possible object is
133
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
134
     *
135
     */
136
    public JAXBElement<String> getDisplayName() {
137
        return displayName;
138
    }
139
140
 
141
     * Sets the value of the displayName property.
142
     *
143
     * @param value
144
     *     allowed object is
145
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
146
     *
147
     */
148
    public void setDisplayName(JAXBElement<String> value) {
149
        this.displayName = ((JAXBElement<String> ) value);
150
    }
151
152
 
153
     * Gets the value of the fieldType property.
154
     *
155
     * @return
156
     *     possible object is
157
     *     {@link FieldType }
158
     *
159
     */
160
    public FieldType getFieldType() {
161
        return fieldType;
162
    }
163
164
 
165
     * Sets the value of the fieldType property.
166
     *
167
     * @param value
168
     *     allowed object is
169
     *     {@link FieldType }
170
     *
171
     */
172
    public void setFieldType(FieldType value) {
173
        this.fieldType = value;
174
    }
175
176
 
177