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

wmixvideo / nfe / #7381

14 Nov 2025 04:39PM UTC coverage: 52.346% (-0.1%) from 52.488%
#7381

push

web-flow
Merge 2dbd6443e into f1539e1c0

27 of 195 new or added lines in 15 files covered. (13.85%)

755 existing lines in 47 files now uncovered.

14736 of 28151 relevant lines covered (52.35%)

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
    @Attribute(name = "Id", required = false)
16
    private String id;
17

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

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

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

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

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

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

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

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

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

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

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

63
        public String getId() {
UNCOV
64
                return id;
×
65
        }
66

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

71
        public DFAmbiente getAmbiente() {
UNCOV
72
                return ambiente;
×
73
        }
74

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

79
        public String getVersaoAplicativo() {
UNCOV
80
                return versaoAplicativo;
×
81
        }
82

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

87
        public DFUnidadeFederativa getOrgao() {
UNCOV
88
                return orgao;
×
89
        }
90

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

95
        public String getCnpjDest() {
UNCOV
96
                return cnpjDest;
×
97
        }
98

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

103
        public String getCpfDest() {
UNCOV
104
                return cpfDest;
×
105
        }
106

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

111
        public Integer getCodigoStatus() {
UNCOV
112
                return codigoStatus;
×
113
        }
114

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

119
        public String getMotivo() {
UNCOV
120
                return motivo;
×
121
        }
122

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

127
        public String getChave() {
UNCOV
128
                return chave;
×
129
        }
130

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

135
        public String getTipoEvento() {
UNCOV
136
                return tipoEvento;
×
137
        }
138

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

143
        public String getDescricaoEvento() {
UNCOV
144
                return descricaoEvento;
×
145
        }
146

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

151
        public Integer getNumeroSequencialEvento() {
UNCOV
152
                return numeroSequencialEvento;
×
153
        }
154

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

159
        public String getOrgaoAutor() {
UNCOV
160
                return orgaoAutor;
×
161
        }
162

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

167
        public String getDataHoraRegistroEvento() {
UNCOV
168
                return dataHoraRegistroEvento;
×
169
        }
170

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

175
        public String getNumeroProtocolo() {
UNCOV
176
                return numeroProtocolo;
×
177
        }
178

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

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

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

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