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