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

wmixvideo / nfe / #7339

18 Nov 2025 12:44PM UTC coverage: 52.617% (+0.1%) from 52.488%
#7339

push

web-flow
Bump org.apache.commons:commons-lang3 from 3.19.0 to 3.20.0 (#1114)

Bumps org.apache.commons:commons-lang3 from 3.19.0 to 3.20.0.

---
updated-dependencies:
- dependency-name: org.apache.commons:commons-lang3
  dependency-version: 3.20.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

14710 of 27957 relevant lines covered (52.62%)

0.53 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() {
64
                return id;
×
65
        }
66

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

187
        public void setChavePendente(List<String> chavePendente) {
188
                this.chavePendente = chavePendente;
×
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