• 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

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() {
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() {
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() {
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() {
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() {
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() {
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