• 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

0.0
/src/main/java/com/fincatto/documentofiscal/cte300/classes/nota/CTeNotaInfoResponsavelTecnico.java
1
package com.fincatto.documentofiscal.cte300.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.Namespace;
7
import org.simpleframework.xml.Root;
8

9
@Root(name = "infRespTec")
10
@Namespace(reference = "http://www.portalfiscal.inf.br/cte")
11
public class CTeNotaInfoResponsavelTecnico extends DFBase {
×
12

13
    private static final long serialVersionUID = 1L;
14

15
        @Element(name = "CNPJ")
16
    private String cnpj;
17

18
    @Element(name = "xContato")
19
    private String contatoNome;
20

21
    @Element(name = "email")
22
    private String email;
23

24
    @Element(name = "fone")
25
    private String telefone;
26

27
    @Element(name = "idCSRT", required = false)
28
    private String idCSRT;
29

30
    @Element(name = "hashCSRT", required = false)
31
    private String hashCSRT;
32

33
    public String getCnpj() {
UNCOV
34
        return cnpj;
×
35
    }
36

37
    public CTeNotaInfoResponsavelTecnico setCnpj(String cnpj) {
UNCOV
38
        DFStringValidador.cnpj(cnpj);
×
UNCOV
39
        this.cnpj = cnpj;
×
40
        return this;
×
41
    }
42

43
    public String getContatoNome() {
UNCOV
44
        return contatoNome;
×
45
    }
46

47
    public CTeNotaInfoResponsavelTecnico setContatoNome(String contatoNome) {
UNCOV
48
        DFStringValidador.tamanho2ate60(contatoNome, "Responsavel tecnico");
×
UNCOV
49
        this.contatoNome = contatoNome;
×
50
        return this;
×
51
    }
52

53
    public String getEmail() {
UNCOV
54
        return email;
×
55
    }
56

57
    public CTeNotaInfoResponsavelTecnico setEmail(String email) {
UNCOV
58
        DFStringValidador.email(email, "Responsavel tecnico ");
×
UNCOV
59
        DFStringValidador.validaIntervalo(email, 6, 60, "Responsavel tecnico");
×
60
        this.email = email;
×
61
        return this;
×
62
    }
63

64
    public String getTelefone() {
UNCOV
65
        return telefone;
×
66
    }
67

68
    public CTeNotaInfoResponsavelTecnico setTelefone(String telefone) {
UNCOV
69
        DFStringValidador.telefone(telefone, "Responsavel tecnico");
×
UNCOV
70
        this.telefone = telefone;
×
71
        return this;
×
72
    }
73

74
    public String getIdCSRT() {
UNCOV
75
        return idCSRT;
×
76
    }
77

78
    public void setIdCSRT(String idCSRT) {
UNCOV
79
        DFStringValidador.exatamente2N(idCSRT, "Responsavel tecnico");
×
UNCOV
80
        this.idCSRT = idCSRT;
×
81
    }
×
82

83
    public String getHashCSRT() {
UNCOV
84
        return hashCSRT;
×
85
    }
86

87
    public void setHashCSRT(String hashCSRT) {
UNCOV
88
        DFStringValidador.isBase64(hashCSRT, "HASH CSRT em Responsavel tecnico");
×
UNCOV
89
        this.hashCSRT = hashCSRT;
×
90
    }
×
91

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