asd
Alejandro Acuña
2024-09-16 816cb391a192e357426312ab8e591fd49d1d242e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
 
package art.servers.gost.atex5.generated;
 
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
 
 
/**
 * <p>Clase Java para anonymous complex type.
 * 
 * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
 * 
 * <pre>
 * &lt;complexType>
 *   &lt;complexContent>
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       &lt;sequence>
 *         &lt;element name="idUsuario" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         &lt;element name="idOrganismoResponsable" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         &lt;element name="idResponsable" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         &lt;element name="version" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         &lt;element ref="{http://webservices.atex.consulta.vehiculos.servicios.trafico.es}CriteriosConsultaVehiculo" minOccurs="0"/>
 *         &lt;element ref="{http://webservices.atex.consulta.vehiculos.servicios.trafico.es}CriteriosConsultaPersona" minOccurs="0"/>
 *         &lt;element ref="{http://webservices.atex.consulta.vehiculos.servicios.trafico.es}CriteriosConsultaDocumento" minOccurs="0"/>
 *         &lt;element ref="{http://webservices.atex.consulta.vehiculos.servicios.trafico.es}CriteriosConsultaEucaris" minOccurs="0"/>
 *         &lt;element name="resultado" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         &lt;element name="respuesta" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *       &lt;/sequence>
 *     &lt;/restriction>
 *   &lt;/complexContent>
 * &lt;/complexType>
 * </pre>
 * 
 * 
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
    "idUsuario",
    "idOrganismoResponsable",
    "idResponsable",
    "version",
    "criteriosConsultaVehiculo",
    "criteriosConsultaPersona",
    "criteriosConsultaDocumento",
    "criteriosConsultaEucaris",
    "resultado",
    "respuesta"
})
@XmlRootElement(name = "RespuestaAtex")
public class RespuestaAtex {
 
    @XmlElement(required = true)
    protected String idUsuario;
    @XmlElement(required = true)
    protected String idOrganismoResponsable;
    @XmlElement(required = true)
    protected String idResponsable;
    @XmlElement(required = true)
    protected String version;
    @XmlElement(name = "CriteriosConsultaVehiculo")
    protected CriteriosConsultaVehiculo criteriosConsultaVehiculo;
    @XmlElement(name = "CriteriosConsultaPersona")
    protected CriteriosConsultaPersona criteriosConsultaPersona;
    @XmlElement(name = "CriteriosConsultaDocumento")
    protected CriteriosConsultaDocumento criteriosConsultaDocumento;
    @XmlElement(name = "CriteriosConsultaEucaris")
    protected CriteriosConsultaEucaris criteriosConsultaEucaris;
    @XmlElement(required = true)
    protected String resultado;
    @XmlElement(required = true)
    protected String respuesta;
 
    /**
     * Obtiene el valor de la propiedad idUsuario.
     * 
     * @return
     *     possible object is
     *     {@link String }
     *     
     */
    public String getIdUsuario() {
        return idUsuario;
    }
 
    /**
     * Define el valor de la propiedad idUsuario.
     * 
     * @param value
     *     allowed object is
     *     {@link String }
     *     
     */
    public void setIdUsuario(String value) {
        this.idUsuario = value;
    }
 
    /**
     * Obtiene el valor de la propiedad idOrganismoResponsable.
     * 
     * @return
     *     possible object is
     *     {@link String }
     *     
     */
    public String getIdOrganismoResponsable() {
        return idOrganismoResponsable;
    }
 
    /**
     * Define el valor de la propiedad idOrganismoResponsable.
     * 
     * @param value
     *     allowed object is
     *     {@link String }
     *     
     */
    public void setIdOrganismoResponsable(String value) {
        this.idOrganismoResponsable = value;
    }
 
    /**
     * Obtiene el valor de la propiedad idResponsable.
     * 
     * @return
     *     possible object is
     *     {@link String }
     *     
     */
    public String getIdResponsable() {
        return idResponsable;
    }
 
    /**
     * Define el valor de la propiedad idResponsable.
     * 
     * @param value
     *     allowed object is
     *     {@link String }
     *     
     */
    public void setIdResponsable(String value) {
        this.idResponsable = value;
    }
 
    /**
     * Obtiene el valor de la propiedad version.
     * 
     * @return
     *     possible object is
     *     {@link String }
     *     
     */
    public String getVersion() {
        return version;
    }
 
    /**
     * Define el valor de la propiedad version.
     * 
     * @param value
     *     allowed object is
     *     {@link String }
     *     
     */
    public void setVersion(String value) {
        this.version = value;
    }
 
    /**
     * Obtiene el valor de la propiedad criteriosConsultaVehiculo.
     * 
     * @return
     *     possible object is
     *     {@link CriteriosConsultaVehiculo }
     *     
     */
    public CriteriosConsultaVehiculo getCriteriosConsultaVehiculo() {
        return criteriosConsultaVehiculo;
    }
 
    /**
     * Define el valor de la propiedad criteriosConsultaVehiculo.
     * 
     * @param value
     *     allowed object is
     *     {@link CriteriosConsultaVehiculo }
     *     
     */
    public void setCriteriosConsultaVehiculo(CriteriosConsultaVehiculo value) {
        this.criteriosConsultaVehiculo = value;
    }
 
    /**
     * Obtiene el valor de la propiedad criteriosConsultaPersona.
     * 
     * @return
     *     possible object is
     *     {@link CriteriosConsultaPersona }
     *     
     */
    public CriteriosConsultaPersona getCriteriosConsultaPersona() {
        return criteriosConsultaPersona;
    }
 
    /**
     * Define el valor de la propiedad criteriosConsultaPersona.
     * 
     * @param value
     *     allowed object is
     *     {@link CriteriosConsultaPersona }
     *     
     */
    public void setCriteriosConsultaPersona(CriteriosConsultaPersona value) {
        this.criteriosConsultaPersona = value;
    }
 
    /**
     * Obtiene el valor de la propiedad criteriosConsultaDocumento.
     * 
     * @return
     *     possible object is
     *     {@link CriteriosConsultaDocumento }
     *     
     */
    public CriteriosConsultaDocumento getCriteriosConsultaDocumento() {
        return criteriosConsultaDocumento;
    }
 
    /**
     * Define el valor de la propiedad criteriosConsultaDocumento.
     * 
     * @param value
     *     allowed object is
     *     {@link CriteriosConsultaDocumento }
     *     
     */
    public void setCriteriosConsultaDocumento(CriteriosConsultaDocumento value) {
        this.criteriosConsultaDocumento = value;
    }
 
    /**
     * Obtiene el valor de la propiedad criteriosConsultaEucaris.
     * 
     * @return
     *     possible object is
     *     {@link CriteriosConsultaEucaris }
     *     
     */
    public CriteriosConsultaEucaris getCriteriosConsultaEucaris() {
        return criteriosConsultaEucaris;
    }
 
    /**
     * Define el valor de la propiedad criteriosConsultaEucaris.
     * 
     * @param value
     *     allowed object is
     *     {@link CriteriosConsultaEucaris }
     *     
     */
    public void setCriteriosConsultaEucaris(CriteriosConsultaEucaris value) {
        this.criteriosConsultaEucaris = value;
    }
 
    /**
     * Obtiene el valor de la propiedad resultado.
     * 
     * @return
     *     possible object is
     *     {@link String }
     *     
     */
    public String getResultado() {
        return resultado;
    }
 
    /**
     * Define el valor de la propiedad resultado.
     * 
     * @param value
     *     allowed object is
     *     {@link String }
     *     
     */
    public void setResultado(String value) {
        this.resultado = value;
    }
 
    /**
     * Obtiene el valor de la propiedad respuesta.
     * 
     * @return
     *     possible object is
     *     {@link String }
     *     
     */
    public String getRespuesta() {
        return respuesta;
    }
 
    /**
     * Define el valor de la propiedad respuesta.
     * 
     * @param value
     *     allowed object is
     *     {@link String }
     *     
     */
    public void setRespuesta(String value) {
        this.respuesta = value;
    }
 
}