• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

wmixvideo / nfe / #6582

17 Jul 2025 09:30PM UTC coverage: 51.231% (+24.2%) from 26.996%
#6582

push

web-flow
Adequação do mapeamento de infLocalCarrega e infLocalDescarrega ao xs:choice do schema MDF-e (#1054)

* Adequação do mapeamento de infLocalCarrega e infLocalDescarrega ao xs:choice do schema MDF-e

* Adequação do mapeamento de infLocalCarrega e infLocalDescarrega ao xs:choice do schema MDF-e

14006 of 27339 relevant lines covered (51.23%)

0.51 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

93.88
/src/main/java/com/fincatto/documentofiscal/nfe400/classes/evento/NFInfoEventoRetorno.java
1
package com.fincatto.documentofiscal.nfe400.classes.evento;
2

3
import com.fincatto.documentofiscal.DFAmbiente;
4
import com.fincatto.documentofiscal.DFBase;
5
import com.fincatto.documentofiscal.DFUnidadeFederativa;
6
import org.simpleframework.xml.Attribute;
7
import org.simpleframework.xml.Element;
8

9
import java.time.ZonedDateTime;
10

11
public class NFInfoEventoRetorno extends DFBase {
1✔
12
    private static final long serialVersionUID = 3251078839113682275L;
13
    
14
    @Attribute(name = "Id", required = false)
15
    private String id;
16
    
17
    @Element(name = "tpAmb")
18
    private DFAmbiente ambiente;
19
    
20
    @Element(name = "verAplic", required = false)
21
    private String versaoAplicativo;
22
    
23
    @Element(name = "cOrgao")
24
    private DFUnidadeFederativa orgao;
25
    
26
    @Element(name = "cStat")
27
    private Integer codigoStatus;
28
    
29
    @Element(name = "xMotivo")
30
    private String motivo;
31
    
32
    @Element(name = "chNFe", required = false)
33
    private String chave;
34
    
35
    @Element(name = "tpEvento", required = false)
36
    private String tipoEvento;
37
    
38
    @Element(name = "xEvento", required = false)
39
    private String descricaoEvento;
40
    
41
    @Element(name = "nSeqEvento", required = false)
42
    private Integer numeroSequencialEvento;
43
    
44
    @Element(name = "cOrgaoAutor", required = false)
45
    private String codigoOrgaoAutorizador;
46
    
47
    @Element(name = "CNPJDest", required = false)
48
    private String cnpj;
49
    
50
    @Element(name = "CPFDest", required = false)
51
    private String cpf;
52
    
53
    @Element(name = "emailDest", required = false)
54
    private String email;
55
    
56
    @Element(name = "dhRegEvento")
57
    private ZonedDateTime dataHoraRegistro;
58
    
59
    @Element(name = "nProt", required = false)
60
    private String numeroProtocolo;
61
    
62
    public String getId() {
63
        return this.id;
1✔
64
    }
65
    
66
    public DFAmbiente getAmbiente() {
67
        return this.ambiente;
1✔
68
    }
69
    
70
    public String getVersaoAplicativo() {
71
        return this.versaoAplicativo;
1✔
72
    }
73
    
74
    public DFUnidadeFederativa getOrgao() {
75
        return this.orgao;
1✔
76
    }
77
    
78
    public Integer getCodigoStatus() {
79
        return this.codigoStatus;
1✔
80
    }
81
    
82
    public String getMotivo() {
83
        return this.motivo;
1✔
84
    }
85
    
86
    public String getChave() {
87
        return this.chave;
1✔
88
    }
89
    
90
    public String getTipoEvento() {
91
        return this.tipoEvento;
1✔
92
    }
93
    
94
    public String getDescricaoEvento() {
95
        return this.descricaoEvento;
1✔
96
    }
97
    
98
    public Integer getNumeroSequencialEvento() {
99
        return this.numeroSequencialEvento;
1✔
100
    }
101
    
102
    public String getCodigoOrgaoAutorizador() {
103
                return codigoOrgaoAutorizador;
×
104
        }
105

106
        public void setCodigoOrgaoAutorizador(String codigoOrgaoAutorizador) {
107
                this.codigoOrgaoAutorizador = codigoOrgaoAutorizador;
×
108
        }
×
109

110
        public String getCnpj() {
111
        return this.cnpj;
1✔
112
    }
113
    
114
    public String getCpf() {
115
        return this.cpf;
1✔
116
    }
117
    
118
    public String getEmail() {
119
        return this.email;
1✔
120
    }
121
    
122
    public ZonedDateTime getDataHoraRegistro() {
123
        return this.dataHoraRegistro;
1✔
124
    }
125
    
126
    public String getNumeroProtocolo() {
127
        return this.numeroProtocolo;
1✔
128
    }
129
    
130
    public void setId(final String id) {
131
        this.id = id;
1✔
132
    }
1✔
133
    
134
    public void setAmbiente(final DFAmbiente ambiente) {
135
        this.ambiente = ambiente;
1✔
136
    }
1✔
137
    
138
    public void setVersaoAplicativo(final String versaoAplicativo) {
139
        this.versaoAplicativo = versaoAplicativo;
1✔
140
    }
1✔
141
    
142
    public void setOrgao(final DFUnidadeFederativa orgao) {
143
        this.orgao = orgao;
1✔
144
    }
1✔
145
    
146
    public void setCodigoStatus(final Integer codigoStatus) {
147
        this.codigoStatus = codigoStatus;
1✔
148
    }
1✔
149
    
150
    public void setMotivo(final String motivo) {
151
        this.motivo = motivo;
1✔
152
    }
1✔
153
    
154
    public void setChave(final String chave) {
155
        this.chave = chave;
1✔
156
    }
1✔
157
    
158
    public void setTipoEvento(final String tipoEvento) {
159
        this.tipoEvento = tipoEvento;
1✔
160
    }
1✔
161
    
162
    public void setDescricaoEvento(final String descricaoEvento) {
163
        this.descricaoEvento = descricaoEvento;
1✔
164
    }
1✔
165
    
166
    public void setNumeroSequencialEvento(final Integer numeroSequencialEvento) {
167
        this.numeroSequencialEvento = numeroSequencialEvento;
1✔
168
    }
1✔
169
    
170
    public void setCnpj(final String cnpj) {
171
        this.cnpj = cnpj;
1✔
172
    }
1✔
173
    
174
    public void setCpf(final String cpf) {
175
        this.cpf = cpf;
1✔
176
    }
1✔
177
    
178
    public void setEmail(final String email) {
179
        this.email = email;
1✔
180
    }
1✔
181
    
182
    public void setDataHoraRegistro(final ZonedDateTime dataHoraRegistro) {
183
        this.dataHoraRegistro = dataHoraRegistro;
1✔
184
    }
1✔
185
    
186
    public void setNumeroProtocolo(final String numeroProtocolo) {
187
        this.numeroProtocolo = numeroProtocolo;
1✔
188
    }
1✔
189
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc