• 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

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