• 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

80.0
/src/main/java/com/fincatto/documentofiscal/mdfe3/classes/nota/MDFInfoSuplementar.java
1
package com.fincatto.documentofiscal.mdfe3.classes.nota;
2

3
import com.fincatto.documentofiscal.DFBase;
4
import com.fincatto.documentofiscal.validadores.DFStringValidador;
5
import org.simpleframework.xml.Element;
6
import org.simpleframework.xml.Namespace;
7
import org.simpleframework.xml.Root;
8

9
/**
10
 * Created by Eldevan Nery Junior on 07/10/19.
11
 * <h1>Informações suplementares do MDF-e</h1>
12
 */
13
@Root(name = "infMDFeSupl")
14
@Namespace(reference = "http://www.portalfiscal.inf.br/mdfe")
15
public class MDFInfoSuplementar extends DFBase {
1✔
16

17
    @Element(data = true, name = "qrCodMDFe")
18
    private String qrCodMDFe;
19
    
20

21
    public void setQrCodMDFe(final String qrCode) {
22
        DFStringValidador.validaIntervalo(qrCode, 50, 1000,"MDF-e QR Code");
1✔
23
        this.qrCodMDFe = qrCode;
1✔
24
    }
1✔
25

26
    public String getQrCodMDFe() {
27
        return this.qrCodMDFe;
×
28
    }
29

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