Subversion Repositories Integrator Subversion

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
414 espaco 1
 
2
package br.com.swconsultoria.nfe.schema.retEnvConfRecebto;
3
 
4
import javax.xml.bind.annotation.XmlAccessType;
5
import javax.xml.bind.annotation.XmlAccessorType;
6
import javax.xml.bind.annotation.XmlAttribute;
7
import javax.xml.bind.annotation.XmlElement;
8
import javax.xml.bind.annotation.XmlID;
9
import javax.xml.bind.annotation.XmlType;
10
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
11
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
12
 
13
 
14
/**
15
 * Tipo Evento
16
 *
17
 * <p>Classe Java de TEvento complex type.
18
 *
19
 * <p>O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe.
20
 *
21
 * <pre>
22
 * &lt;complexType name="TEvento"&gt;
23
 *   &lt;complexContent&gt;
24
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
25
 *       &lt;sequence&gt;
26
 *         &lt;element name="infEvento"&gt;
27
 *           &lt;complexType&gt;
28
 *             &lt;complexContent&gt;
29
 *               &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
30
 *                 &lt;sequence&gt;
31
 *                   &lt;element name="cOrgao" type="{http://www.portalfiscal.inf.br/nfe}TCOrgaoIBGE"/&gt;
32
 *                   &lt;element name="tpAmb" type="{http://www.portalfiscal.inf.br/nfe}TAmb"/&gt;
33
 *                   &lt;choice&gt;
34
 *                     &lt;element name="CNPJ" type="{http://www.portalfiscal.inf.br/nfe}TCnpjOpc"/&gt;
35
 *                     &lt;element name="CPF" type="{http://www.portalfiscal.inf.br/nfe}TCpf"/&gt;
36
 *                   &lt;/choice&gt;
37
 *                   &lt;element name="chNFe" type="{http://www.portalfiscal.inf.br/nfe}TChNFe"/&gt;
38
 *                   &lt;element name="dhEvento" type="{http://www.portalfiscal.inf.br/nfe}TDateTimeUTC"/&gt;
39
 *                   &lt;element name="tpEvento"&gt;
40
 *                     &lt;simpleType&gt;
41
 *                       &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
42
 *                         &lt;whiteSpace value="preserve"/&gt;
43
 *                         &lt;pattern value="[0-9]{6}"/&gt;
44
 *                         &lt;enumeration value="210200"/&gt;
45
 *                         &lt;enumeration value="210210"/&gt;
46
 *                         &lt;enumeration value="210220"/&gt;
47
 *                         &lt;enumeration value="210240"/&gt;
48
 *                       &lt;/restriction&gt;
49
 *                     &lt;/simpleType&gt;
50
 *                   &lt;/element&gt;
51
 *                   &lt;element name="nSeqEvento"&gt;
52
 *                     &lt;simpleType&gt;
53
 *                       &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
54
 *                         &lt;whiteSpace value="preserve"/&gt;
55
 *                         &lt;pattern value="[0-9]{1,2}"/&gt;
56
 *                       &lt;/restriction&gt;
57
 *                     &lt;/simpleType&gt;
58
 *                   &lt;/element&gt;
59
 *                   &lt;element name="verEvento" type="{http://www.portalfiscal.inf.br/nfe}TVerEnvEvento"/&gt;
60
 *                   &lt;element name="detEvento"&gt;
61
 *                     &lt;complexType&gt;
62
 *                       &lt;complexContent&gt;
63
 *                         &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
64
 *                           &lt;sequence&gt;
65
 *                             &lt;element name="descEvento"&gt;
66
 *                               &lt;simpleType&gt;
67
 *                                 &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
68
 *                                   &lt;whiteSpace value="preserve"/&gt;
69
 *                                   &lt;enumeration value="Confirmacao da Operacao"/&gt;
70
 *                                   &lt;enumeration value="Ciencia da Operacao"/&gt;
71
 *                                   &lt;enumeration value="Desconhecimento da Operacao"/&gt;
72
 *                                   &lt;enumeration value="Operacao nao Realizada"/&gt;
73
 *                                 &lt;/restriction&gt;
74
 *                               &lt;/simpleType&gt;
75
 *                             &lt;/element&gt;
76
 *                             &lt;element name="xJust" minOccurs="0"&gt;
77
 *                               &lt;simpleType&gt;
78
 *                                 &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
79
 *                                   &lt;whiteSpace value="preserve"/&gt;
80
 *                                   &lt;minLength value="15"/&gt;
81
 *                                   &lt;maxLength value="255"/&gt;
82
 *                                   &lt;pattern value="[!-ÿ]{1}[ -ÿ]{0,}[!-ÿ]{1}|[!-ÿ]{1}"/&gt;
83
 *                                 &lt;/restriction&gt;
84
 *                               &lt;/simpleType&gt;
85
 *                             &lt;/element&gt;
86
 *                           &lt;/sequence&gt;
87
 *                           &lt;attribute name="versao" use="required"&gt;
88
 *                             &lt;simpleType&gt;
89
 *                               &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
90
 *                                 &lt;whiteSpace value="preserve"/&gt;
91
 *                                 &lt;enumeration value="1.00"/&gt;
92
 *                               &lt;/restriction&gt;
93
 *                             &lt;/simpleType&gt;
94
 *                           &lt;/attribute&gt;
95
 *                         &lt;/restriction&gt;
96
 *                       &lt;/complexContent&gt;
97
 *                     &lt;/complexType&gt;
98
 *                   &lt;/element&gt;
99
 *                 &lt;/sequence&gt;
100
 *                 &lt;attribute name="Id" use="required"&gt;
101
 *                   &lt;simpleType&gt;
102
 *                     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}ID"&gt;
103
 *                       &lt;pattern value="ID[0-9]{52}"/&gt;
104
 *                     &lt;/restriction&gt;
105
 *                   &lt;/simpleType&gt;
106
 *                 &lt;/attribute&gt;
107
 *               &lt;/restriction&gt;
108
 *             &lt;/complexContent&gt;
109
 *           &lt;/complexType&gt;
110
 *         &lt;/element&gt;
111
 *         &lt;element ref="{http://www.w3.org/2000/09/xmldsig#}Signature"/&gt;
112
 *       &lt;/sequence&gt;
113
 *       &lt;attribute name="versao" use="required" type="{http://www.portalfiscal.inf.br/nfe}TVerEvento" /&gt;
114
 *     &lt;/restriction&gt;
115
 *   &lt;/complexContent&gt;
116
 * &lt;/complexType&gt;
117
 * </pre>
118
 *
119
 *
120
 */
121
@XmlAccessorType(XmlAccessType.FIELD)
122
@XmlType(name = "TEvento", namespace = "http://www.portalfiscal.inf.br/nfe", propOrder = {
123
    "infEvento",
124
    "signature"
125
})
126
public class TEvento {
127
 
128
    @XmlElement(namespace = "http://www.portalfiscal.inf.br/nfe", required = true)
129
    protected TEvento.InfEvento infEvento;
130
    @XmlElement(name = "Signature", namespace = "http://www.w3.org/2000/09/xmldsig#", required = true)
131
    protected SignatureType signature;
132
    @XmlAttribute(name = "versao", required = true)
133
    protected String versao;
134
 
135
    /**
136
     * Obtém o valor da propriedade infEvento.
137
     *
138
     * @return
139
     *     possible object is
140
     *     {@link TEvento.InfEvento }
141
     *    
142
     */
143
    public TEvento.InfEvento getInfEvento() {
144
        return infEvento;
145
    }
146
 
147
    /**
148
     * Define o valor da propriedade infEvento.
149
     *
150
     * @param value
151
     *     allowed object is
152
     *     {@link TEvento.InfEvento }
153
     *    
154
     */
155
    public void setInfEvento(TEvento.InfEvento value) {
156
        this.infEvento = value;
157
    }
158
 
159
    /**
160
     * Obtém o valor da propriedade signature.
161
     *
162
     * @return
163
     *     possible object is
164
     *     {@link SignatureType }
165
     *    
166
     */
167
    public SignatureType getSignature() {
168
        return signature;
169
    }
170
 
171
    /**
172
     * Define o valor da propriedade signature.
173
     *
174
     * @param value
175
     *     allowed object is
176
     *     {@link SignatureType }
177
     *    
178
     */
179
    public void setSignature(SignatureType value) {
180
        this.signature = value;
181
    }
182
 
183
    /**
184
     * Obtém o valor da propriedade versao.
185
     *
186
     * @return
187
     *     possible object is
188
     *     {@link String }
189
     *    
190
     */
191
    public String getVersao() {
192
        return versao;
193
    }
194
 
195
    /**
196
     * Define o valor da propriedade versao.
197
     *
198
     * @param value
199
     *     allowed object is
200
     *     {@link String }
201
     *    
202
     */
203
    public void setVersao(String value) {
204
        this.versao = value;
205
    }
206
 
207
 
208
    /**
209
     * <p>Classe Java de anonymous complex type.
210
     *
211
     * <p>O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe.
212
     *
213
     * <pre>
214
     * &lt;complexType&gt;
215
     *   &lt;complexContent&gt;
216
     *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
217
     *       &lt;sequence&gt;
218
     *         &lt;element name="cOrgao" type="{http://www.portalfiscal.inf.br/nfe}TCOrgaoIBGE"/&gt;
219
     *         &lt;element name="tpAmb" type="{http://www.portalfiscal.inf.br/nfe}TAmb"/&gt;
220
     *         &lt;choice&gt;
221
     *           &lt;element name="CNPJ" type="{http://www.portalfiscal.inf.br/nfe}TCnpjOpc"/&gt;
222
     *           &lt;element name="CPF" type="{http://www.portalfiscal.inf.br/nfe}TCpf"/&gt;
223
     *         &lt;/choice&gt;
224
     *         &lt;element name="chNFe" type="{http://www.portalfiscal.inf.br/nfe}TChNFe"/&gt;
225
     *         &lt;element name="dhEvento" type="{http://www.portalfiscal.inf.br/nfe}TDateTimeUTC"/&gt;
226
     *         &lt;element name="tpEvento"&gt;
227
     *           &lt;simpleType&gt;
228
     *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
229
     *               &lt;whiteSpace value="preserve"/&gt;
230
     *               &lt;pattern value="[0-9]{6}"/&gt;
231
     *               &lt;enumeration value="210200"/&gt;
232
     *               &lt;enumeration value="210210"/&gt;
233
     *               &lt;enumeration value="210220"/&gt;
234
     *               &lt;enumeration value="210240"/&gt;
235
     *             &lt;/restriction&gt;
236
     *           &lt;/simpleType&gt;
237
     *         &lt;/element&gt;
238
     *         &lt;element name="nSeqEvento"&gt;
239
     *           &lt;simpleType&gt;
240
     *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
241
     *               &lt;whiteSpace value="preserve"/&gt;
242
     *               &lt;pattern value="[0-9]{1,2}"/&gt;
243
     *             &lt;/restriction&gt;
244
     *           &lt;/simpleType&gt;
245
     *         &lt;/element&gt;
246
     *         &lt;element name="verEvento" type="{http://www.portalfiscal.inf.br/nfe}TVerEnvEvento"/&gt;
247
     *         &lt;element name="detEvento"&gt;
248
     *           &lt;complexType&gt;
249
     *             &lt;complexContent&gt;
250
     *               &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
251
     *                 &lt;sequence&gt;
252
     *                   &lt;element name="descEvento"&gt;
253
     *                     &lt;simpleType&gt;
254
     *                       &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
255
     *                         &lt;whiteSpace value="preserve"/&gt;
256
     *                         &lt;enumeration value="Confirmacao da Operacao"/&gt;
257
     *                         &lt;enumeration value="Ciencia da Operacao"/&gt;
258
     *                         &lt;enumeration value="Desconhecimento da Operacao"/&gt;
259
     *                         &lt;enumeration value="Operacao nao Realizada"/&gt;
260
     *                       &lt;/restriction&gt;
261
     *                     &lt;/simpleType&gt;
262
     *                   &lt;/element&gt;
263
     *                   &lt;element name="xJust" minOccurs="0"&gt;
264
     *                     &lt;simpleType&gt;
265
     *                       &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
266
     *                         &lt;whiteSpace value="preserve"/&gt;
267
     *                         &lt;minLength value="15"/&gt;
268
     *                         &lt;maxLength value="255"/&gt;
269
     *                         &lt;pattern value="[!-ÿ]{1}[ -ÿ]{0,}[!-ÿ]{1}|[!-ÿ]{1}"/&gt;
270
     *                       &lt;/restriction&gt;
271
     *                     &lt;/simpleType&gt;
272
     *                   &lt;/element&gt;
273
     *                 &lt;/sequence&gt;
274
     *                 &lt;attribute name="versao" use="required"&gt;
275
     *                   &lt;simpleType&gt;
276
     *                     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
277
     *                       &lt;whiteSpace value="preserve"/&gt;
278
     *                       &lt;enumeration value="1.00"/&gt;
279
     *                     &lt;/restriction&gt;
280
     *                   &lt;/simpleType&gt;
281
     *                 &lt;/attribute&gt;
282
     *               &lt;/restriction&gt;
283
     *             &lt;/complexContent&gt;
284
     *           &lt;/complexType&gt;
285
     *         &lt;/element&gt;
286
     *       &lt;/sequence&gt;
287
     *       &lt;attribute name="Id" use="required"&gt;
288
     *         &lt;simpleType&gt;
289
     *           &lt;restriction base="{http://www.w3.org/2001/XMLSchema}ID"&gt;
290
     *             &lt;pattern value="ID[0-9]{52}"/&gt;
291
     *           &lt;/restriction&gt;
292
     *         &lt;/simpleType&gt;
293
     *       &lt;/attribute&gt;
294
     *     &lt;/restriction&gt;
295
     *   &lt;/complexContent&gt;
296
     * &lt;/complexType&gt;
297
     * </pre>
298
     *
299
     *
300
     */
301
    @XmlAccessorType(XmlAccessType.FIELD)
302
    @XmlType(name = "", propOrder = {
303
        "cOrgao",
304
        "tpAmb",
305
        "cnpj",
306
        "cpf",
307
        "chNFe",
308
        "dhEvento",
309
        "tpEvento",
310
        "nSeqEvento",
311
        "verEvento",
312
        "detEvento"
313
    })
314
    public static class InfEvento {
315
 
316
        @XmlElement(namespace = "http://www.portalfiscal.inf.br/nfe", required = true)
317
        protected String cOrgao;
318
        @XmlElement(namespace = "http://www.portalfiscal.inf.br/nfe", required = true)
319
        protected String tpAmb;
320
        @XmlElement(name = "CNPJ", namespace = "http://www.portalfiscal.inf.br/nfe")
321
        protected String cnpj;
322
        @XmlElement(name = "CPF", namespace = "http://www.portalfiscal.inf.br/nfe")
323
        protected String cpf;
324
        @XmlElement(namespace = "http://www.portalfiscal.inf.br/nfe", required = true)
325
        protected String chNFe;
326
        @XmlElement(namespace = "http://www.portalfiscal.inf.br/nfe", required = true)
327
        protected String dhEvento;
328
        @XmlElement(namespace = "http://www.portalfiscal.inf.br/nfe", required = true)
329
        protected String tpEvento;
330
        @XmlElement(namespace = "http://www.portalfiscal.inf.br/nfe", required = true)
331
        protected String nSeqEvento;
332
        @XmlElement(namespace = "http://www.portalfiscal.inf.br/nfe", required = true)
333
        protected String verEvento;
334
        @XmlElement(namespace = "http://www.portalfiscal.inf.br/nfe", required = true)
335
        protected TEvento.InfEvento.DetEvento detEvento;
336
        @XmlAttribute(name = "Id", required = true)
337
        @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
338
        @XmlID
339
        protected String id;
340
 
341
        /**
342
         * Obtém o valor da propriedade cOrgao.
343
         *
344
         * @return
345
         *     possible object is
346
         *     {@link String }
347
         *    
348
         */
349
        public String getCOrgao() {
350
            return cOrgao;
351
        }
352
 
353
        /**
354
         * Define o valor da propriedade cOrgao.
355
         *
356
         * @param value
357
         *     allowed object is
358
         *     {@link String }
359
         *    
360
         */
361
        public void setCOrgao(String value) {
362
            this.cOrgao = value;
363
        }
364
 
365
        /**
366
         * Obtém o valor da propriedade tpAmb.
367
         *
368
         * @return
369
         *     possible object is
370
         *     {@link String }
371
         *    
372
         */
373
        public String getTpAmb() {
374
            return tpAmb;
375
        }
376
 
377
        /**
378
         * Define o valor da propriedade tpAmb.
379
         *
380
         * @param value
381
         *     allowed object is
382
         *     {@link String }
383
         *    
384
         */
385
        public void setTpAmb(String value) {
386
            this.tpAmb = value;
387
        }
388
 
389
        /**
390
         * Obtém o valor da propriedade cnpj.
391
         *
392
         * @return
393
         *     possible object is
394
         *     {@link String }
395
         *    
396
         */
397
        public String getCNPJ() {
398
            return cnpj;
399
        }
400
 
401
        /**
402
         * Define o valor da propriedade cnpj.
403
         *
404
         * @param value
405
         *     allowed object is
406
         *     {@link String }
407
         *    
408
         */
409
        public void setCNPJ(String value) {
410
            this.cnpj = value;
411
        }
412
 
413
        /**
414
         * Obtém o valor da propriedade cpf.
415
         *
416
         * @return
417
         *     possible object is
418
         *     {@link String }
419
         *    
420
         */
421
        public String getCPF() {
422
            return cpf;
423
        }
424
 
425
        /**
426
         * Define o valor da propriedade cpf.
427
         *
428
         * @param value
429
         *     allowed object is
430
         *     {@link String }
431
         *    
432
         */
433
        public void setCPF(String value) {
434
            this.cpf = value;
435
        }
436
 
437
        /**
438
         * Obtém o valor da propriedade chNFe.
439
         *
440
         * @return
441
         *     possible object is
442
         *     {@link String }
443
         *    
444
         */
445
        public String getChNFe() {
446
            return chNFe;
447
        }
448
 
449
        /**
450
         * Define o valor da propriedade chNFe.
451
         *
452
         * @param value
453
         *     allowed object is
454
         *     {@link String }
455
         *    
456
         */
457
        public void setChNFe(String value) {
458
            this.chNFe = value;
459
        }
460
 
461
        /**
462
         * Obtém o valor da propriedade dhEvento.
463
         *
464
         * @return
465
         *     possible object is
466
         *     {@link String }
467
         *    
468
         */
469
        public String getDhEvento() {
470
            return dhEvento;
471
        }
472
 
473
        /**
474
         * Define o valor da propriedade dhEvento.
475
         *
476
         * @param value
477
         *     allowed object is
478
         *     {@link String }
479
         *    
480
         */
481
        public void setDhEvento(String value) {
482
            this.dhEvento = value;
483
        }
484
 
485
        /**
486
         * Obtém o valor da propriedade tpEvento.
487
         *
488
         * @return
489
         *     possible object is
490
         *     {@link String }
491
         *    
492
         */
493
        public String getTpEvento() {
494
            return tpEvento;
495
        }
496
 
497
        /**
498
         * Define o valor da propriedade tpEvento.
499
         *
500
         * @param value
501
         *     allowed object is
502
         *     {@link String }
503
         *    
504
         */
505
        public void setTpEvento(String value) {
506
            this.tpEvento = value;
507
        }
508
 
509
        /**
510
         * Obtém o valor da propriedade nSeqEvento.
511
         *
512
         * @return
513
         *     possible object is
514
         *     {@link String }
515
         *    
516
         */
517
        public String getNSeqEvento() {
518
            return nSeqEvento;
519
        }
520
 
521
        /**
522
         * Define o valor da propriedade nSeqEvento.
523
         *
524
         * @param value
525
         *     allowed object is
526
         *     {@link String }
527
         *    
528
         */
529
        public void setNSeqEvento(String value) {
530
            this.nSeqEvento = value;
531
        }
532
 
533
        /**
534
         * Obtém o valor da propriedade verEvento.
535
         *
536
         * @return
537
         *     possible object is
538
         *     {@link String }
539
         *    
540
         */
541
        public String getVerEvento() {
542
            return verEvento;
543
        }
544
 
545
        /**
546
         * Define o valor da propriedade verEvento.
547
         *
548
         * @param value
549
         *     allowed object is
550
         *     {@link String }
551
         *    
552
         */
553
        public void setVerEvento(String value) {
554
            this.verEvento = value;
555
        }
556
 
557
        /**
558
         * Obtém o valor da propriedade detEvento.
559
         *
560
         * @return
561
         *     possible object is
562
         *     {@link TEvento.InfEvento.DetEvento }
563
         *    
564
         */
565
        public TEvento.InfEvento.DetEvento getDetEvento() {
566
            return detEvento;
567
        }
568
 
569
        /**
570
         * Define o valor da propriedade detEvento.
571
         *
572
         * @param value
573
         *     allowed object is
574
         *     {@link TEvento.InfEvento.DetEvento }
575
         *    
576
         */
577
        public void setDetEvento(TEvento.InfEvento.DetEvento value) {
578
            this.detEvento = value;
579
        }
580
 
581
        /**
582
         * Obtém o valor da propriedade id.
583
         *
584
         * @return
585
         *     possible object is
586
         *     {@link String }
587
         *    
588
         */
589
        public String getId() {
590
            return id;
591
        }
592
 
593
        /**
594
         * Define o valor da propriedade id.
595
         *
596
         * @param value
597
         *     allowed object is
598
         *     {@link String }
599
         *    
600
         */
601
        public void setId(String value) {
602
            this.id = value;
603
        }
604
 
605
 
606
        /**
607
         * <p>Classe Java de anonymous complex type.
608
         *
609
         * <p>O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe.
610
         *
611
         * <pre>
612
         * &lt;complexType&gt;
613
         *   &lt;complexContent&gt;
614
         *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
615
         *       &lt;sequence&gt;
616
         *         &lt;element name="descEvento"&gt;
617
         *           &lt;simpleType&gt;
618
         *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
619
         *               &lt;whiteSpace value="preserve"/&gt;
620
         *               &lt;enumeration value="Confirmacao da Operacao"/&gt;
621
         *               &lt;enumeration value="Ciencia da Operacao"/&gt;
622
         *               &lt;enumeration value="Desconhecimento da Operacao"/&gt;
623
         *               &lt;enumeration value="Operacao nao Realizada"/&gt;
624
         *             &lt;/restriction&gt;
625
         *           &lt;/simpleType&gt;
626
         *         &lt;/element&gt;
627
         *         &lt;element name="xJust" minOccurs="0"&gt;
628
         *           &lt;simpleType&gt;
629
         *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
630
         *               &lt;whiteSpace value="preserve"/&gt;
631
         *               &lt;minLength value="15"/&gt;
632
         *               &lt;maxLength value="255"/&gt;
633
         *               &lt;pattern value="[!-ÿ]{1}[ -ÿ]{0,}[!-ÿ]{1}|[!-ÿ]{1}"/&gt;
634
         *             &lt;/restriction&gt;
635
         *           &lt;/simpleType&gt;
636
         *         &lt;/element&gt;
637
         *       &lt;/sequence&gt;
638
         *       &lt;attribute name="versao" use="required"&gt;
639
         *         &lt;simpleType&gt;
640
         *           &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
641
         *             &lt;whiteSpace value="preserve"/&gt;
642
         *             &lt;enumeration value="1.00"/&gt;
643
         *           &lt;/restriction&gt;
644
         *         &lt;/simpleType&gt;
645
         *       &lt;/attribute&gt;
646
         *     &lt;/restriction&gt;
647
         *   &lt;/complexContent&gt;
648
         * &lt;/complexType&gt;
649
         * </pre>
650
         *
651
         *
652
         */
653
        @XmlAccessorType(XmlAccessType.FIELD)
654
        @XmlType(name = "", propOrder = {
655
            "descEvento",
656
            "xJust"
657
        })
658
        public static class DetEvento {
659
 
660
            @XmlElement(namespace = "http://www.portalfiscal.inf.br/nfe", required = true)
661
            protected String descEvento;
662
            @XmlElement(namespace = "http://www.portalfiscal.inf.br/nfe")
663
            protected String xJust;
664
            @XmlAttribute(name = "versao", required = true)
665
            protected String versao;
666
 
667
            /**
668
             * Obtém o valor da propriedade descEvento.
669
             *
670
             * @return
671
             *     possible object is
672
             *     {@link String }
673
             *    
674
             */
675
            public String getDescEvento() {
676
                return descEvento;
677
            }
678
 
679
            /**
680
             * Define o valor da propriedade descEvento.
681
             *
682
             * @param value
683
             *     allowed object is
684
             *     {@link String }
685
             *    
686
             */
687
            public void setDescEvento(String value) {
688
                this.descEvento = value;
689
            }
690
 
691
            /**
692
             * Obtém o valor da propriedade xJust.
693
             *
694
             * @return
695
             *     possible object is
696
             *     {@link String }
697
             *    
698
             */
699
            public String getXJust() {
700
                return xJust;
701
            }
702
 
703
            /**
704
             * Define o valor da propriedade xJust.
705
             *
706
             * @param value
707
             *     allowed object is
708
             *     {@link String }
709
             *    
710
             */
711
            public void setXJust(String value) {
712
                this.xJust = value;
713
            }
714
 
715
            /**
716
             * Obtém o valor da propriedade versao.
717
             *
718
             * @return
719
             *     possible object is
720
             *     {@link String }
721
             *    
722
             */
723
            public String getVersao() {
724
                return versao;
725
            }
726
 
727
            /**
728
             * Define o valor da propriedade versao.
729
             *
730
             * @param value
731
             *     allowed object is
732
             *     {@link String }
733
             *    
734
             */
735
            public void setVersao(String value) {
736
                this.versao = value;
737
            }
738
 
739
        }
740
 
741
    }
742
 
743
}