• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In
Build has been canceled!

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

3
import com.fincatto.documentofiscal.DFBase;
4
import com.fincatto.documentofiscal.nfe310.classes.nota.assinatura.NFSignature;
5
import com.fincatto.documentofiscal.nfe400.classes.nota.NFNota;
6
import com.fincatto.documentofiscal.validadores.DFBigDecimalValidador;
7
import java.math.BigDecimal;
8

9
import org.simpleframework.xml.Attribute;
10
import org.simpleframework.xml.Element;
11
import org.simpleframework.xml.Root;
12
import org.simpleframework.xml.Transient;
13

14

15
@Root(name = "evento")
16
public class NFEventoEpec extends DFBase {
×
17

18
        @Attribute(name = "versao", required = true)
19
        private String versao;
20

21
        @Element(name = "infEvento", required = true)
22
        private NFInfoEventoEpec infoEvento;
23

24
        @Element(name = "Signature", required = false)
25
        private NFSignature assinatura;
26

27
        @Transient
28
        private NFNota nota;
29

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

34
        public NFInfoEventoEpec getInfoEvento() {
35
                return this.infoEvento;
×
36
        }
37

38
        public String getVersao() {
39
                return this.versao;
×
40
        }
41

42
        public void setVersao(String versao) {
43
                this.versao = versao;
×
44
        }
×
45

46
        public void setInfoEvento(final NFInfoEventoEpec infoEvento) {
47
                this.infoEvento = infoEvento;
×
48
        }
×
49

50
        public void setAssinatura(final NFSignature assinatura) {
51
                this.assinatura = assinatura;
×
52
        }
×
53

54
        public NFSignature getAssinatura() {
55
                return this.assinatura;
×
56
        }
57

58
        public NFNota getNota() {
59
                return nota;
×
60
        }
61

62
        public void setNota(NFNota nota) {
63
                this.nota = nota;
×
64
        }
×
65

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