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

wmixvideo / nfe / #6582

17 Jul 2025 09:30PM UTC coverage: 51.231% (+24.2%) from 26.996%
#6582

push

web-flow
Adequação do mapeamento de infLocalCarrega e infLocalDescarrega ao xs:choice do schema MDF-e (#1054)

* Adequação do mapeamento de infLocalCarrega e infLocalDescarrega ao xs:choice do schema MDF-e

* Adequação do mapeamento de infLocalCarrega e infLocalDescarrega ao xs:choice do schema MDF-e

14006 of 27339 relevant lines covered (51.23%)

0.51 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

70.59
/src/main/java/com/fincatto/documentofiscal/mdfe3/classes/nota/MDFInfoModalRodoviarioANTT.java
1
package com.fincatto.documentofiscal.mdfe3.classes.nota;
2

3
import java.util.List;
4

5
import org.simpleframework.xml.Element;
6
import org.simpleframework.xml.ElementList;
7
import org.simpleframework.xml.Root;
8

9
import com.fincatto.documentofiscal.DFBase;
10
import com.fincatto.documentofiscal.validadores.DFStringValidador;
11

12
/**
13
 * Created by Eldevan Nery Junior on 01/11/17.
14
 * <h1>Grupo de informações para Agência Reguladora</h1>
15
 */
16
@Root(name = "infANTT")
17
public class MDFInfoModalRodoviarioANTT extends DFBase {
1✔
18
    private static final long serialVersionUID = -5412043951034386272L;
19
    /**
20
     * <h1>Registro Nacional de Transportadores Rodoviários de Carga</h1>
21
     * <p>
22
     * Registro obrigatório do emitente do MDF-e junto à ANTT para exercer a atividade de transportador rodoviário de cargas por conta de terceiros e mediante remuneração.
23
     * </p>
24
     */
25
    @Element(name = "RNTRC", required = false)
26
    private String rntrc;
27
    /**
28
     * <h1>Dados do CIOT.</h1>
29
     */
30
    @ElementList(entry = "infCIOT", inline = true, required = false)
31
    private List<MDFInfoModalRodoviarioInfCIOT> infCIOT;
32
    /**
33
     * Informações de Vale Pedágio
34
     */
35
    @Element(name = "valePed", required = false)
36
    private MDFInfoModalRodoviarioPedagio valePedagio;
37

38
    @ElementList(entry = "infContratante", inline = true, required = false)
39
    protected List<MDFInfoModalRodoviarioInfContratante> infContratante;
40
    
41
    @ElementList(entry = "infPag", inline = true, required = false)
42
    protected List<MDFInfoModalRodoviarioInfPag> infPag;
43

44
    public String getRntrc() {
45
        return this.rntrc;
×
46
    }
47

48
    public void setRntrc(final String rntrc) {
49
        DFStringValidador.validador(rntrc, "Registro Nacional de Transportadores Rodoviários de Carga(RNTRC) ", 8, true, true);
1✔
50
        this.rntrc = rntrc;
1✔
51
    }
1✔
52

53
    public List<MDFInfoModalRodoviarioInfCIOT> getInfCIOT() {
54
        return this.infCIOT;
×
55
    }
56

57
    public void setInfCIOT(final List<MDFInfoModalRodoviarioInfCIOT> infCIOT) {
58
        this.infCIOT = infCIOT;
1✔
59
    }
1✔
60

61
    public MDFInfoModalRodoviarioPedagio getValePedagio() {
62
        return this.valePedagio;
×
63
    }
64

65
    public void setValePedagio(final MDFInfoModalRodoviarioPedagio valePedagio) {
66
        this.valePedagio = valePedagio;
1✔
67
    }
1✔
68

69
    public List<MDFInfoModalRodoviarioInfContratante> getInfContratante() {
70
        return this.infContratante;
×
71
    }
72

73
    public void setInfContratante(final List<MDFInfoModalRodoviarioInfContratante> infContratante) {
74
        this.infContratante = infContratante;
1✔
75
    }
1✔
76

77
    public List<MDFInfoModalRodoviarioInfPag> getInfPag() {
78
        return infPag;
×
79
    }
80

81
    public void setInfPag(List<MDFInfoModalRodoviarioInfPag> infPag) {
82
        this.infPag = infPag;
1✔
83
    }
1✔
84
    
85
}
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