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

wmixvideo / nfe / #7338

07 Nov 2025 12:20PM UTC coverage: 52.488%. Remained the same
#7338

push

web-flow
Merge 372a05676 into f1539e1c0

272 of 387 new or added lines in 14 files covered. (70.28%)

704 existing lines in 45 files now uncovered.

14639 of 27890 relevant lines covered (52.49%)

0.52 hits per line

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

0.0
/src/main/java/com/fincatto/documentofiscal/nfe400/classes/evento/epec/NFInfoEventoEpecRetorno.java
1
package com.fincatto.documentofiscal.nfe400.classes.evento.epec;
2

3
import com.fincatto.documentofiscal.DFAmbiente;
4
import com.fincatto.documentofiscal.DFBase;
5
import com.fincatto.documentofiscal.DFUnidadeFederativa;
6
import java.util.List;
7

8
import org.simpleframework.xml.Attribute;
9
import org.simpleframework.xml.Element;
10
import org.simpleframework.xml.ElementList;
11

12

13
public class NFInfoEventoEpecRetorno extends DFBase {
×
14

15
    private static final long serialVersionUID = 1L;
16

17
        @Attribute(name = "Id", required = false)
18
    private String id;
19

20
    @Element(name = "tpAmb", required = true)
21
    private DFAmbiente ambiente;
22

23
    @Element(name = "verAplic", required = true)
24
    private String versaoAplicativo;
25

26
    @Element(name = "cOrgao", required = true)
27
    private DFUnidadeFederativa orgao;
28
    
29
    @Element(name = "CNPJDest", required = false)
30
    private String cnpjDest;
31
    
32
    @Element(name = "CPFDest", required = false)
33
    private String cpfDest;
34

35
    @Element(name = "cStat", required = true)
36
    private Integer codigoStatus;
37

38
    @Element(name = "xMotivo", required = true)
39
    private String motivo;
40

41
    @Element(name = "chNFe", required = false)
42
    private String chave;
43

44
    @Element(name = "tpEvento", required = false)
45
    private String tipoEvento;
46

47
    @Element(name = "xEvento", required = false)
48
    private String descricaoEvento;
49

50
    @Element(name = "nSeqEvento", required = false)
51
    private Integer numeroSequencialEvento;
52

53
    @Element(name = "cOrgaoAutor", required = false)
54
    private String orgaoAutor;
55
    
56
    @Element(name = "dhRegEvento", required = true)
57
    private String dataHoraRegistroEvento;
58

59
    @Element(name = "nProt", required = false)
60
    private String numeroProtocolo;
61
    
62
    @ElementList(name = "chNFePend", required = false)
63
    private List<String> chavePendente;
64

65
        public String getId() {
UNCOV
66
                return id;
×
67
        }
68

69
        public void setId(String id) {
UNCOV
70
                this.id = id;
×
UNCOV
71
        }
×
72

73
        public DFAmbiente getAmbiente() {
UNCOV
74
                return ambiente;
×
75
        }
76

77
        public void setAmbiente(DFAmbiente ambiente) {
UNCOV
78
                this.ambiente = ambiente;
×
UNCOV
79
        }
×
80

81
        public String getVersaoAplicativo() {
UNCOV
82
                return versaoAplicativo;
×
83
        }
84

85
        public void setVersaoAplicativo(String versaoAplicativo) {
UNCOV
86
                this.versaoAplicativo = versaoAplicativo;
×
UNCOV
87
        }
×
88

89
        public DFUnidadeFederativa getOrgao() {
UNCOV
90
                return orgao;
×
91
        }
92

93
        public void setOrgao(DFUnidadeFederativa orgao) {
UNCOV
94
                this.orgao = orgao;
×
UNCOV
95
        }
×
96

97
        public String getCnpjDest() {
UNCOV
98
                return cnpjDest;
×
99
        }
100

101
        public void setCnpjDest(String cnpjDest) {
UNCOV
102
                this.cnpjDest = cnpjDest;
×
UNCOV
103
        }
×
104

105
        public String getCpfDest() {
UNCOV
106
                return cpfDest;
×
107
        }
108

109
        public void setCpfDest(String cpfDest) {
UNCOV
110
                this.cpfDest = cpfDest;
×
UNCOV
111
        }
×
112

113
        public Integer getCodigoStatus() {
UNCOV
114
                return codigoStatus;
×
115
        }
116

117
        public void setCodigoStatus(Integer codigoStatus) {
UNCOV
118
                this.codigoStatus = codigoStatus;
×
UNCOV
119
        }
×
120

121
        public String getMotivo() {
UNCOV
122
                return motivo;
×
123
        }
124

125
        public void setMotivo(String motivo) {
UNCOV
126
                this.motivo = motivo;
×
UNCOV
127
        }
×
128

129
        public String getChave() {
UNCOV
130
                return chave;
×
131
        }
132

133
        public void setChave(String chave) {
UNCOV
134
                this.chave = chave;
×
UNCOV
135
        }
×
136

137
        public String getTipoEvento() {
UNCOV
138
                return tipoEvento;
×
139
        }
140

141
        public void setTipoEvento(String tipoEvento) {
UNCOV
142
                this.tipoEvento = tipoEvento;
×
UNCOV
143
        }
×
144

145
        public String getDescricaoEvento() {
UNCOV
146
                return descricaoEvento;
×
147
        }
148

149
        public void setDescricaoEvento(String descricaoEvento) {
UNCOV
150
                this.descricaoEvento = descricaoEvento;
×
UNCOV
151
        }
×
152

153
        public Integer getNumeroSequencialEvento() {
UNCOV
154
                return numeroSequencialEvento;
×
155
        }
156

157
        public void setNumeroSequencialEvento(Integer numeroSequencialEvento) {
UNCOV
158
                this.numeroSequencialEvento = numeroSequencialEvento;
×
UNCOV
159
        }
×
160

161
        public String getOrgaoAutor() {
UNCOV
162
                return orgaoAutor;
×
163
        }
164

165
        public void setOrgaoAutor(String orgaoAutor) {
UNCOV
166
                this.orgaoAutor = orgaoAutor;
×
UNCOV
167
        }
×
168

169
        public String getDataHoraRegistroEvento() {
UNCOV
170
                return dataHoraRegistroEvento;
×
171
        }
172

173
        public void setDataHoraRegistroEvento(String dataHoraRegistroEvento) {
UNCOV
174
                this.dataHoraRegistroEvento = dataHoraRegistroEvento;
×
UNCOV
175
        }
×
176

177
        public String getNumeroProtocolo() {
UNCOV
178
                return numeroProtocolo;
×
179
        }
180

181
        public void setNumeroProtocolo(String numeroProtocolo) {
UNCOV
182
                this.numeroProtocolo = numeroProtocolo;
×
UNCOV
183
        }
×
184

185
        public List<String> getChavePendente() {
UNCOV
186
                return chavePendente;
×
187
        }
188

189
        public void setChavePendente(List<String> chavePendente) {
UNCOV
190
                this.chavePendente = chavePendente;
×
UNCOV
191
        }
×
192

193
}
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