Subversion Repositories XServices

Rev

Details | 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 ApplicationData complex type.
14
 *
15
 * <p>The following schema fragment specifies the expected content contained within this class.
16
 *
17
 * <pre>
18
 * &lt;complexType name="ApplicationData">
19
 *   &lt;complexContent>
20
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21
 *       &lt;sequence>
22
 *         &lt;element name="applicationID" type="{http://www.w3.org/2001/XMLSchema}integer"/>
23
 *         &lt;element name="applicationUUID" 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="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
26
 *         &lt;element name="appDefUUID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
27
 *         &lt;element name="revision" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
28
 *       &lt;/sequence>
29
 *     &lt;/restriction>
30
 *   &lt;/complexContent>
31
 * &lt;/complexType>
32
 * </pre>
33
 *
34
 *
35
 */
36
@XmlAccessorType(XmlAccessType.FIELD)
37
@XmlType(name = "ApplicationData", propOrder = {
38
    "applicationID",
39
    "applicationUUID",
40
    "name",
41
    "description",
42
    "appDefUUID",
43
    "revision"
44
})
45
public class ApplicationData {
46
47
 
48
    protected BigInteger applicationID;
49
    @XmlElementRef(name = "applicationUUID", namespace = "urn:aewebservices71", type = JAXBElement.class)
50
    protected JAXBElement<String> applicationUUID;
51
    @XmlElementRef(name = "name", namespace = "urn:aewebservices71", type = JAXBElement.class)
52
    protected JAXBElement<String> name;
53
    @XmlElementRef(name = "description", namespace = "urn:aewebservices71", type = JAXBElement.class)
54
    protected JAXBElement<String> description;
55
    @XmlElementRef(name = "appDefUUID", namespace = "urn:aewebservices71", type = JAXBElement.class)
56
    protected JAXBElement<String> appDefUUID;
57
    @XmlElementRef(name = "revision", namespace = "urn:aewebservices71", type = JAXBElement.class)
58
    protected JAXBElement<String> revision;
59
60
 
61
     * Gets the value of the applicationID property.
62
     *
63
     * @return
64
     *     possible object is
65
     *     {@link BigInteger }
66
     *
67
     */
68
    public BigInteger getApplicationID() {
69
        return applicationID;
70
    }
71
72
 
73
     * Sets the value of the applicationID property.
74
     *
75
     * @param value
76
     *     allowed object is
77
     *     {@link BigInteger }
78
     *
79
     */
80
    public void setApplicationID(BigInteger value) {
81
        this.applicationID = value;
82
    }
83
84
 
85
     * Gets the value of the applicationUUID property.
86
     *
87
     * @return
88
     *     possible object is
89
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
90
     *
91
     */
92
    public JAXBElement<String> getApplicationUUID() {
93
        return applicationUUID;
94
    }
95
96
 
97
     * Sets the value of the applicationUUID property.
98
     *
99
     * @param value
100
     *     allowed object is
101
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
102
     *
103
     */
104
    public void setApplicationUUID(JAXBElement<String> value) {
105
        this.applicationUUID = ((JAXBElement<String> ) value);
106
    }
107
108
 
109
     * Gets the value of the name property.
110
     *
111
     * @return
112
     *     possible object is
113
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
114
     *
115
     */
116
    public JAXBElement<String> getName() {
117
        return name;
118
    }
119
120
 
121
     * Sets the value of the name property.
122
     *
123
     * @param value
124
     *     allowed object is
125
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
126
     *
127
     */
128
    public void setName(JAXBElement<String> value) {
129
        this.name = ((JAXBElement<String> ) value);
130
    }
131
132
 
133
     * Gets the value of the description property.
134
     *
135
     * @return
136
     *     possible object is
137
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
138
     *
139
     */
140
    public JAXBElement<String> getDescription() {
141
        return description;
142
    }
143
144
 
145
     * Sets the value of the description property.
146
     *
147
     * @param value
148
     *     allowed object is
149
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
150
     *
151
     */
152
    public void setDescription(JAXBElement<String> value) {
153
        this.description = ((JAXBElement<String> ) value);
154
    }
155
156
 
157
     * Gets the value of the appDefUUID property.
158
     *
159
     * @return
160
     *     possible object is
161
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
162
     *
163
     */
164
    public JAXBElement<String> getAppDefUUID() {
165
        return appDefUUID;
166
    }
167
168
 
169
     * Sets the value of the appDefUUID property.
170
     *
171
     * @param value
172
     *     allowed object is
173
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
174
     *
175
     */
176
    public void setAppDefUUID(JAXBElement<String> value) {
177
        this.appDefUUID = ((JAXBElement<String> ) value);
178
    }
179
180
 
181
     * Gets the value of the revision property.
182
     *
183
     * @return
184
     *     possible object is
185
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
186
     *
187
     */
188
    public JAXBElement<String> getRevision() {
189
        return revision;
190
    }
191
192
 
193
     * Sets the value of the revision property.
194
     *
195
     * @param value
196
     *     allowed object is
197
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
198
     *
199
     */
200
    public void setRevision(JAXBElement<String> value) {
201
        this.revision = ((JAXBElement<String> ) value);
202
    }
203
204
 
205