• 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/lote/envio/MDFEnvioLoteRetorno.java
1
package com.fincatto.documentofiscal.mdfe3.classes.lote.envio;
2

3
import org.simpleframework.xml.Attribute;
4
import org.simpleframework.xml.Element;
5
import org.simpleframework.xml.Namespace;
6
import org.simpleframework.xml.Root;
7

8
import com.fincatto.documentofiscal.DFAmbiente;
9
import com.fincatto.documentofiscal.DFBase;
10
import com.fincatto.documentofiscal.DFUnidadeFederativa;
11

12
/**
13
 * Created by Eldevan Nery Junior on 14/11/17. Retorno do envio de Lote MDF-e .
14
 */
15
@Root(name = "retEnviMDFe")
16
@Namespace(reference = "http://www.portalfiscal.inf.br/mdfe")
17
public class MDFEnvioLoteRetorno extends DFBase {
×
18
    private static final long serialVersionUID = -1891312937948557486L;
19

20
    @Element(name = "tpAmb", required = false)
21
    private DFAmbiente ambiente;
22

23
    @Element(name = "cUF", required = false)
24
    private DFUnidadeFederativa uf;
25

26
    @Element(name = "verAplic", required = false)
27
    private String versaoAplicacao;
28

29
    @Element(name = "cStat", required = false)
30
    private String status;
31

32
    @Element(name = "xMotivo", required = false)
33
    private String motivo;
34

35
    @Element(name = "infRec", required = false)
36
    private MDFEnvioLoteRetornoInfoRecebimento infoRecebimento;
37

38
    @Attribute(name = "versao", required = false)
39
    private String versao;
40

41
    public DFAmbiente getAmbiente() {
42
        return this.ambiente;
×
43
    }
44

45
    /**
46
     * Identificação do Ambiente:1 - Produção; 2 - Homologação
47
     */
48
    public void setAmbiente(final DFAmbiente ambiente) {
49
        this.ambiente = ambiente;
×
50
    }
×
51

52
    public DFUnidadeFederativa getUf() {
53
        return this.uf;
×
54
    }
55

56
    /**
57
     * Identificação da UF
58
     */
59
    public void setUf(final DFUnidadeFederativa uf) {
60
        this.uf = uf;
×
61
    }
×
62

63
    public String getVersaoAplicacao() {
64
        return this.versaoAplicacao;
×
65
    }
66

67
    /**
68
     * Versão do Aplicativo que recebeu o Lote.
69
     */
70
    public void setVersaoAplicacao(final String versaoAplicacao) {
71
        this.versaoAplicacao = versaoAplicacao;
×
72
    }
×
73

74
    public String getStatus() {
75
        return this.status;
×
76
    }
77

78
    /**
79
     * Código do status da mensagem enviada.
80
     */
81
    public void setStatus(final String status) {
82
        this.status = status;
×
83
    }
×
84

85
    public String getMotivo() {
86
        return this.motivo;
×
87
    }
88

89
    /**
90
     * Descrição literal do status do serviço solicitado.
91
     */
92
    public void setMotivo(final String motivo) {
93
        this.motivo = motivo;
×
94
    }
×
95

96
    public MDFEnvioLoteRetornoInfoRecebimento getInfoRecebimento() {
97
        return this.infoRecebimento;
×
98
    }
99

100
    /**
101
     * Dados do Recibo do Lote
102
     */
103
    public void setInfoRecebimento(final MDFEnvioLoteRetornoInfoRecebimento infoRecebimento) {
104
        this.infoRecebimento = infoRecebimento;
×
105
    }
×
106

107
    public String getVersao() {
108
        return this.versao;
×
109
    }
110

111
    /**
112
     * versão da aplicação
113
     */
114
    public void setVersao(final String versao) {
115
        this.versao = versao;
×
116
    }
×
117
}
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