Subversion Repositories Integrator Subversion

Rev

Details | Last modification | View Log | RSS feed

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