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

wmixvideo / nfe / #6266

21 Mar 2025 11:46AM UTC coverage: 52.671% (+25.7%) from 26.996%
#6266

push

luciano.antunes
Nota Fiscal Fácil

0 of 21 new or added lines in 2 files covered. (0.0%)

2924 existing lines in 401 files now uncovered.

14002 of 26584 relevant lines covered (52.67%)

0.53 hits per line

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

60.71
/src/main/java/com/fincatto/documentofiscal/mdfe3/classes/MDFProtocoloInfo.java
1
package com.fincatto.documentofiscal.mdfe3.classes;
2

3
import com.fincatto.documentofiscal.DFAmbiente;
4
import com.fincatto.documentofiscal.DFBase;
5
import org.simpleframework.xml.Attribute;
6
import org.simpleframework.xml.Element;
7

8
import java.time.ZonedDateTime;
9

10
/**
11
 * @Author Eldevan Nery Junior on 26/05/17.
12
 */
13
public class MDFProtocoloInfo extends DFBase {
1✔
14
    private static final long serialVersionUID = 256148266644230771L;
15
    
16
    @Attribute(name = "Id", required = false)
17
    private String identificador;
18
    
19
    @Element(name = "tpAmb")
20
    private DFAmbiente ambiente;
21
    
22
    @Element(name = "verAplic")
23
    private String versaoAplicacao;
24
    
25
    @Element(name = "chMDFe")
26
    private String chave;
27
    
28
    @Element(name = "dhRecbto")
29
    private ZonedDateTime dataRecebimento;
30
    
31
    @Element(name = "nProt", required = false)
32
    private String numeroProtocolo;
33
    
34
    @Element(name = "digVal", required = false)
35
    private String validador;
36
    
37
    @Element(name = "cStat")
38
    private String status;
39
    
40
    @Element(name = "xMotivo")
41
    private String motivo;
42
    
43
    public void setAmbiente(final DFAmbiente ambiente) {
44
        this.ambiente = ambiente;
1✔
45
    }
1✔
46
    
47
    public void setVersaoAplicacao(final String versaoAplicacao) {
48
        this.versaoAplicacao = versaoAplicacao;
1✔
49
    }
1✔
50
    
51
    public void setChave(final String chave) {
52
        this.chave = chave;
1✔
53
    }
1✔
54
    
55
    public void setDataRecebimento(final ZonedDateTime dataRecebimento) {
56
        this.dataRecebimento = dataRecebimento;
1✔
57
    }
1✔
58
    
59
    public void setNumeroProtocolo(final String numeroProtocolo) {
60
        this.numeroProtocolo = numeroProtocolo;
1✔
61
    }
1✔
62
    
63
    public void setValidador(final String validador) {
64
        this.validador = validador;
1✔
65
    }
1✔
66
    
67
    public void setStatus(final String status) {
68
        this.status = status;
1✔
69
    }
1✔
70
    
71
    public void setMotivo(final String motivo) {
72
        this.motivo = motivo;
1✔
73
    }
1✔
74
    
75
    public DFAmbiente getAmbiente() {
UNCOV
76
        return this.ambiente;
×
77
    }
78
    
79
    public String getVersaoAplicacao() {
UNCOV
80
        return this.versaoAplicacao;
×
81
    }
82
    
83
    public String getChave() {
UNCOV
84
        return this.chave;
×
85
    }
86
    
87
    public ZonedDateTime getDataRecebimento() {
UNCOV
88
        return this.dataRecebimento;
×
89
    }
90
    
91
    public String getNumeroProtocolo() {
92
        return this.numeroProtocolo;
×
93
    }
94
    
95
    public String getValidador() {
UNCOV
96
        return this.validador;
×
97
    }
98
    
99
    public String getStatus() {
UNCOV
100
        return this.status;
×
101
    }
102
    
103
    public String getMotivo() {
UNCOV
104
        return this.motivo;
×
105
    }
106
    
107
    public String getIdentificador() {
UNCOV
108
        return this.identificador;
×
109
    }
110
    
111
    public void setIdentificador(final String identificador) {
UNCOV
112
        this.identificador = identificador;
×
UNCOV
113
    }
×
114
}
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

© 2025 Coveralls, Inc