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

wmixvideo / nfe / #7381

14 Nov 2025 04:39PM UTC coverage: 52.346% (-0.1%) from 52.488%
#7381

push

web-flow
Merge 2dbd6443e into f1539e1c0

27 of 195 new or added lines in 15 files covered. (13.85%)

755 existing lines in 47 files now uncovered.

14736 of 28151 relevant lines covered (52.35%)

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