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

wmixvideo / nfe / #7325

18 Nov 2025 12:44PM UTC coverage: 52.617% (+0.1%) from 52.488%
#7325

push

web-flow
Bump org.apache.commons:commons-lang3 from 3.19.0 to 3.20.0 (#1114)

Bumps org.apache.commons:commons-lang3 from 3.19.0 to 3.20.0.

---
updated-dependencies:
- dependency-name: org.apache.commons:commons-lang3
  dependency-version: 3.20.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

14710 of 27957 relevant lines covered (52.62%)

0.53 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
    @Element(name = "CNPJ")
14
    private String cnpj;
15

16
    @Element(name = "xContato")
17
    private String contatoNome;
18

19
    @Element(name = "email")
20
    private String email;
21

22
    @Element(name = "fone")
23
    private String telefone;
24

25
    @Element(name = "idCSRT", required = false)
26
    private String idCSRT;
27

28
    @Element(name = "hashCSRT", required = false)
29
    private String hashCSRT;
30

31
    public String getCnpj() {
32
        return cnpj;
×
33
    }
34

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

41
    public String getContatoNome() {
42
        return contatoNome;
×
43
    }
44

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

51
    public String getEmail() {
52
        return email;
×
53
    }
54

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

62
    public String getTelefone() {
63
        return telefone;
×
64
    }
65

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

72
    public String getIdCSRT() {
73
        return idCSRT;
×
74
    }
75

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

81
    public String getHashCSRT() {
82
        return hashCSRT;
×
83
    }
84

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

90
}
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