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

wmixvideo / nfe / #7325

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

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/NFEnviaEventoEpec.java
1
package com.fincatto.documentofiscal.nfe400.classes.evento.epec;
2

3
import com.fincatto.documentofiscal.DFBase;
4
import java.math.BigDecimal;
5
import java.util.List;
6

7
import org.simpleframework.xml.Attribute;
8
import org.simpleframework.xml.Element;
9
import org.simpleframework.xml.ElementList;
10
import org.simpleframework.xml.Namespace;
11
import org.simpleframework.xml.Root;
12

13
import com.fincatto.documentofiscal.validadores.DFBigDecimalValidador;
14
import com.fincatto.documentofiscal.validadores.DFListValidador;
15
import com.fincatto.documentofiscal.validadores.DFStringValidador;
16

17
@Root(name = "envEvento")
18
@Namespace(reference = "http://www.portalfiscal.inf.br/nfe")
19
public class NFEnviaEventoEpec extends DFBase {
×
20

21
        @Attribute(name = "versao", required = true)
22
        private String versao;
23

24
        @Element(name = "idLote", required = true)
25
        private String idLote;
26

27
        @ElementList(entry = "evento", inline = true, required = true)
28
        private List<NFEventoEpec> evento;
29

30
        public void setVersao(final BigDecimal versao) {
31
                this.versao = DFBigDecimalValidador.tamanho5Com2CasasDecimais(versao, "Versao");
×
32
        }
×
33

34
        public String getVersao() {
35
                return this.versao;
×
36
        }
37

38
        public void setVersao(String versao) {
39
                this.versao = versao;
×
40
        }
×
41

42
        public String getIdLote() {
43
                return this.idLote;
×
44
        }
45

46
        public void setIdLote(final String idLote) {
47
                DFStringValidador.tamanho15N(idLote, "ID do Lote");
×
48
                this.idLote = idLote;
×
49
        }
×
50

51
        public List<NFEventoEpec> getEvento() {
52
                return this.evento;
×
53
        }
54

55
        public void setEvento(final List<NFEventoEpec> evento) {
56
                DFListValidador.tamanho20(evento, "Evento de Conting\u00eancia EPEC");
×
57
                this.evento = evento;
×
58
        }
×
59
}
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