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.annotation.XmlAccessType;
5
import javax.xml.bind.annotation.XmlAccessorType;
6
import javax.xml.bind.annotation.XmlElement;
7
import javax.xml.bind.annotation.XmlElementRef;
8
import javax.xml.bind.annotation.XmlRootElement;
9
import javax.xml.bind.annotation.XmlType;
10
11
 
12
 
13
 * <p>Java class for anonymous complex type.
14
 *
15
 * <p>The following schema fragment specifies the expected content contained within this class.
16
 *
17
 * <pre>
18
 * &lt;complexType>
19
 *   &lt;complexContent>
20
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21
 *       &lt;sequence>
22
 *         &lt;element name="auth" type="{urn:aewebservices71}Auth" minOccurs="0"/>
23
 *         &lt;element name="xmlInFile" type="{urn:aewebservices71}FileContents"/>
24
 *         &lt;element name="adminRepositoryID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
25
 *         &lt;element name="importResponseEndPoint" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
26
 *         &lt;element name="importResponseID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
27
 *         &lt;element name="xmlImportOptions" type="{urn:aewebservices71}FileContents" minOccurs="0"/>
28
 *         &lt;element name="validateOnly" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
29
 *       &lt;/sequence>
30
 *     &lt;/restriction>
31
 *   &lt;/complexContent>
32
 * &lt;/complexType>
33
 * </pre>
34
 *
35
 *
36
 */
37
@XmlAccessorType(XmlAccessType.FIELD)
38
@XmlType(name = "", propOrder = {
39
    "auth",
40
    "xmlInFile",
41
    "adminRepositoryID",
42
    "importResponseEndPoint",
43
    "importResponseID",
44
    "xmlImportOptions",
45
    "validateOnly"
46
})
47
@XmlRootElement(name = "Import")
48
public class Import {
49
50
 
51
    protected JAXBElement<Auth> auth;
52
    @XmlElement(required = true)
53
    protected FileContents xmlInFile;
54
    @XmlElementRef(name = "adminRepositoryID", namespace = "urn:aewebservices71", type = JAXBElement.class)
55
    protected JAXBElement<String> adminRepositoryID;
56
    @XmlElementRef(name = "importResponseEndPoint", namespace = "urn:aewebservices71", type = JAXBElement.class)
57
    protected JAXBElement<String> importResponseEndPoint;
58
    @XmlElementRef(name = "importResponseID", namespace = "urn:aewebservices71", type = JAXBElement.class)
59
    protected JAXBElement<String> importResponseID;
60
    @XmlElementRef(name = "xmlImportOptions", namespace = "urn:aewebservices71", type = JAXBElement.class)
61
    protected JAXBElement<FileContents> xmlImportOptions;
62
    protected boolean validateOnly;
63
64
 
65
     * Gets the value of the auth property.
66
     *
67
     * @return
68
     *     possible object is
69
     *     {@link JAXBElement }{@code <}{@link Auth }{@code >}
70
     *
71
     */
72
    public JAXBElement<Auth> getAuth() {
73
        return auth;
74
    }
75
76
 
77
     * Sets the value of the auth property.
78
     *
79
     * @param value
80
     *     allowed object is
81
     *     {@link JAXBElement }{@code <}{@link Auth }{@code >}
82
     *
83
     */
84
    public void setAuth(JAXBElement<Auth> value) {
85
        this.auth = ((JAXBElement<Auth> ) value);
86
    }
87
88
 
89
     * Gets the value of the xmlInFile property.
90
     *
91
     * @return
92
     *     possible object is
93
     *     {@link FileContents }
94
     *
95
     */
96
    public FileContents getXmlInFile() {
97
        return xmlInFile;
98
    }
99
100
 
101
     * Sets the value of the xmlInFile property.
102
     *
103
     * @param value
104
     *     allowed object is
105
     *     {@link FileContents }
106
     *
107
     */
108
    public void setXmlInFile(FileContents value) {
109
        this.xmlInFile = value;
110
    }
111
112
 
113
     * Gets the value of the adminRepositoryID property.
114
     *
115
     * @return
116
     *     possible object is
117
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
118
     *
119
     */
120
    public JAXBElement<String> getAdminRepositoryID() {
121
        return adminRepositoryID;
122
    }
123
124
 
125
     * Sets the value of the adminRepositoryID property.
126
     *
127
     * @param value
128
     *     allowed object is
129
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
130
     *
131
     */
132
    public void setAdminRepositoryID(JAXBElement<String> value) {
133
        this.adminRepositoryID = ((JAXBElement<String> ) value);
134
    }
135
136
 
137
     * Gets the value of the importResponseEndPoint property.
138
     *
139
     * @return
140
     *     possible object is
141
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
142
     *
143
     */
144
    public JAXBElement<String> getImportResponseEndPoint() {
145
        return importResponseEndPoint;
146
    }
147
148
 
149
     * Sets the value of the importResponseEndPoint property.
150
     *
151
     * @param value
152
     *     allowed object is
153
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
154
     *
155
     */
156
    public void setImportResponseEndPoint(JAXBElement<String> value) {
157
        this.importResponseEndPoint = ((JAXBElement<String> ) value);
158
    }
159
160
 
161
     * Gets the value of the importResponseID property.
162
     *
163
     * @return
164
     *     possible object is
165
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
166
     *
167
     */
168
    public JAXBElement<String> getImportResponseID() {
169
        return importResponseID;
170
    }
171
172
 
173
     * Sets the value of the importResponseID property.
174
     *
175
     * @param value
176
     *     allowed object is
177
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
178
     *
179
     */
180
    public void setImportResponseID(JAXBElement<String> value) {
181
        this.importResponseID = ((JAXBElement<String> ) value);
182
    }
183
184
 
185
     * Gets the value of the xmlImportOptions property.
186
     *
187
     * @return
188
     *     possible object is
189
     *     {@link JAXBElement }{@code <}{@link FileContents }{@code >}
190
     *
191
     */
192
    public JAXBElement<FileContents> getXmlImportOptions() {
193
        return xmlImportOptions;
194
    }
195
196
 
197
     * Sets the value of the xmlImportOptions property.
198
     *
199
     * @param value
200
     *     allowed object is
201
     *     {@link JAXBElement }{@code <}{@link FileContents }{@code >}
202
     *
203
     */
204
    public void setXmlImportOptions(JAXBElement<FileContents> value) {
205
        this.xmlImportOptions = ((JAXBElement<FileContents> ) value);
206
    }
207
208
 
209
     * Gets the value of the validateOnly property.
210
     *
211
     */
212
    public boolean isValidateOnly() {
213
        return validateOnly;
214
    }
215
216
 
217
     * Sets the value of the validateOnly property.
218
     *
219
     */
220
    public void setValidateOnly(boolean value) {
221
        this.validateOnly = value;
222
    }
223
224
 
225