• 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

0.0
/src/main/java/com/fincatto/documentofiscal/mdfe3/classes/MDFeConsultaRetorno.java
1
package com.fincatto.documentofiscal.mdfe3.classes;
2

3
import com.fincatto.documentofiscal.DFAmbiente;
4
import com.fincatto.documentofiscal.DFBase;
5
import com.fincatto.documentofiscal.DFUnidadeFederativa;
6
import com.fincatto.documentofiscal.nfe310.classes.NFProtocoloInfo;
7
import com.fincatto.documentofiscal.nfe310.classes.lote.envio.NFLoteEnvioRetornoRecebimentoInfo;
8
import org.simpleframework.xml.Attribute;
9
import org.simpleframework.xml.Element;
10
import org.simpleframework.xml.Namespace;
11
import org.simpleframework.xml.Root;
12

13
import java.time.ZonedDateTime;
14

15
/**
16
 * @Author Eldevan Nery Junior on 26/05/17.
17
 */
18
@Root(name = "retConsReciMDFe")
19
@Namespace(reference = "http://www.portalfiscal.inf.br/mdfe")
20
public class MDFeConsultaRetorno extends DFBase {
×
21
    private static final long serialVersionUID = -7216488190676193958L;
22
    
23
    @Attribute(name = "versao")
24
    private String versao;
25
    
26
    @Element(name = "tpAmb")
27
    private DFAmbiente ambiente;
28
    
29
    @Element(name = "verAplic")
30
    private String versaoAplicacao;
31
    
32
    @Element(name = "cStat")
33
    private String status;
34
    
35
    @Element(name = "xMotivo")
36
    private String motivo;
37
    
38
    @Element(name = "nRec")
39
    private String reciboConsultado;
40
    
41
    @Element(name = "cUF")
42
    private DFUnidadeFederativa uf;
43
    
44
    @Element(name = "dhRecbto")
45
    private ZonedDateTime dataRecebimento;
46

47
    @Element(name = "infRec", required = false)
48
    private NFLoteEnvioRetornoRecebimentoInfo infoRecebimento;
49

50
    @Element(name = "protMDFe", required = false)
51
    private MDFProtocolo protocoloRecebimento;
52

53
    @Element(name = "infProt", required = false)
54
    private NFProtocoloInfo protocoloInfo;
55

56
    public void setVersao(final String versao) {
57
        this.versao = versao;
×
58
    }
×
59

60
    public void setAmbiente(final DFAmbiente ambiente) {
61
        this.ambiente = ambiente;
×
62
    }
×
63

64
    public void setVersaoAplicacao(final String versaoAplicacao) {
65
        this.versaoAplicacao = versaoAplicacao;
×
66
    }
×
67

68
    public void setStatus(final String status) {
69
        this.status = status;
×
70
    }
×
71

72
    public void setMotivo(final String motivo) {
73
        this.motivo = motivo;
×
74
    }
×
75

76
    public void setUf(final DFUnidadeFederativa uf) {
77
        this.uf = uf;
×
78
    }
×
79

80
    public void setDataRecebimento(final ZonedDateTime dataRecebimento) {
81
        this.dataRecebimento = dataRecebimento;
×
82
    }
×
83

84
    public NFLoteEnvioRetornoRecebimentoInfo getInfoRecebimento() {
85
        return this.infoRecebimento;
×
86
    }
87

88
    public void setInfoRecebimento(final NFLoteEnvioRetornoRecebimentoInfo infoRecebimento) {
89
        this.infoRecebimento = infoRecebimento;
×
90
    }
×
91

92
    public String getVersao() {
93
        return this.versao;
×
94
    }
95

96
    public DFAmbiente getAmbiente() {
97
        return this.ambiente;
×
98
    }
99

100
    public String getVersaoAplicacao() {
101
        return this.versaoAplicacao;
×
102
    }
103

104
    public String getStatus() {
105
        return this.status;
×
106
    }
107

108
    public String getMotivo() {
109
        return this.motivo;
×
110
    }
111

112
    public DFUnidadeFederativa getUf() {
113
        return this.uf;
×
114
    }
115

116
    public ZonedDateTime getDataRecebimento() {
117
        return this.dataRecebimento;
×
118
    }
119

120
    public MDFProtocolo getProtocoloRecebimento() {
121
        return this.protocoloRecebimento;
×
122
    }
123

124
    public NFProtocoloInfo getProtocoloInfo() {
125
        return this.protocoloInfo;
×
126
    }
127

128
    public void setProtocoloInfo(final NFProtocoloInfo protocoloInfo) {
129
        this.protocoloInfo = protocoloInfo;
×
130
    }
×
131

132
    public void setProtocoloRecebimentoSincrono(final MDFProtocolo protocoloRecebimento) {
133
        this.protocoloRecebimento = protocoloRecebimento;
×
134
    }
×
135

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