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

wmixvideo / nfe / #7324

18 Nov 2025 12:44PM UTC coverage: 52.488%. Remained the same
#7324

push

web-flow
Merge 5aad707ce into 2d4409cab

272 of 387 new or added lines in 14 files covered. (70.28%)

704 existing lines in 45 files now uncovered.

14639 of 27890 relevant lines covered (52.49%)

0.52 hits per line

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

76.92
/src/main/java/com/fincatto/documentofiscal/nfe400/classes/nota/NFNotaInfoResponsavelTecnico.java
1
package com.fincatto.documentofiscal.nfe400.classes.nota;
2

3
import com.fincatto.documentofiscal.DFBase;
4
import com.fincatto.documentofiscal.validadores.DFStringValidador;
5
import org.simpleframework.xml.Element;
6
import org.simpleframework.xml.Root;
7

8
/**
9
 * Tag para informacoes do responsavel tecnico.
10
 *
11
 * @author Nerito
12
 */
13
@Root(name = "infRespTec")
14
public class NFNotaInfoResponsavelTecnico extends DFBase {
1✔
15
    
16
    private static final long serialVersionUID = 1L;
17

18
        @Element(name = "CNPJ")
19
    private String cnpj;
20
    
21
    @Element(name = "xContato")
22
    private String contatoNome;
23
    
24
    @Element(name = "email")
25
    private String email;
26
    
27
    @Element(name = "fone")
28
    private String telefone;
29
    
30
    @Element(name = "idCSRT", required = false)
31
    private String idCSRT;
32
    
33
    @Element(name = "hashCSRT", required = false)
34
    private String hashCSRT;
35
    
36
    public String getCnpj() {
UNCOV
37
        return cnpj;
×
38
    }
39
    
40
    public NFNotaInfoResponsavelTecnico setCnpj(String cnpj) {
41
        DFStringValidador.cnpj(cnpj);
1✔
42
        this.cnpj = cnpj;
1✔
43
        return this;
1✔
44
    }
45
    
46
    public String getContatoNome() {
UNCOV
47
        return contatoNome;
×
48
    }
49
    
50
    public NFNotaInfoResponsavelTecnico setContatoNome(String contatoNome) {
51
        DFStringValidador.tamanho2ate60(contatoNome, "Responsavel tecnico");
1✔
52
        this.contatoNome = contatoNome;
1✔
53
        return this;
1✔
54
    }
55
    
56
    public String getEmail() {
UNCOV
57
        return email;
×
58
    }
59
    
60
    public NFNotaInfoResponsavelTecnico setEmail(String email) {
61
        DFStringValidador.email(email, "Responsavel tecnico ");
1✔
62
        DFStringValidador.validaIntervalo(email, 6, 60, "Responsavel tecnico");
1✔
63
        this.email = email;
1✔
64
        return this;
1✔
65
    }
66
    
67
    public String getTelefone() {
UNCOV
68
        return telefone;
×
69
    }
70
    
71
    public NFNotaInfoResponsavelTecnico setTelefone(String telefone) {
72
        DFStringValidador.telefone(telefone, "Responsavel tecnico");
1✔
73
        this.telefone = telefone;
1✔
74
        return this;
1✔
75
    }
76
    
77
    public String getIdCSRT() {
UNCOV
78
        return idCSRT;
×
79
    }
80
    
81
    public void setIdCSRT(String idCSRT) {
82
        DFStringValidador.exatamente2N(idCSRT, "Responsavel tecnico");
1✔
83
        this.idCSRT = idCSRT;
1✔
84
    }
1✔
85
    
86
    public String getHashCSRT() {
UNCOV
87
        return hashCSRT;
×
88
    }
89
    
90
    public void setHashCSRT(String hashCSRT) {
91
        DFStringValidador.isBase64(hashCSRT, "HASH CSRT em Responsavel tecnico");
1✔
92
        this.hashCSRT = hashCSRT;
1✔
93
    }
1✔
94
}
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