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

Samuel-Oliveira / Java_NFe / #2

14 Jun 2026 07:31PM UTC coverage: 14.623%. First build
#2

push

Samuel-Oliveira
Merge branch 'develop'

299 of 1379 new or added lines in 130 files covered. (21.68%)

2702 of 18478 relevant lines covered (14.62%)

0.15 hits per line

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

0.0
/src/main/java/br/com/swconsultoria/nfe/schemas/TRSAKeyValueType.java
1

2
package br.com.swconsultoria.nfe.schemas;
3

4
import javax.xml.bind.annotation.XmlAccessType;
5
import javax.xml.bind.annotation.XmlAccessorType;
6
import javax.xml.bind.annotation.XmlElement;
7
import javax.xml.bind.annotation.XmlType;
8

9

10
/**
11
 * Tipo que representa uma chave publica padrão RSA
12
 * 
13
 * <p>Classe Java de TRSAKeyValueType complex type.
14
 * 
15
 * <p>O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe.
16
 * 
17
 * <pre>
18
 * &lt;complexType name="TRSAKeyValueType">
19
 *   &lt;complexContent>
20
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21
 *       &lt;sequence>
22
 *         &lt;element name="Modulus" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
23
 *         &lt;element name="Exponent" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
24
 *       &lt;/sequence>
25
 *     &lt;/restriction>
26
 *   &lt;/complexContent>
27
 * &lt;/complexType>
28
 * </pre>
29
 * 
30
 * 
31
 */
32
@XmlAccessorType(XmlAccessType.FIELD)
33
@XmlType(name = "TRSAKeyValueType", propOrder = {
34
    "modulus",
35
    "exponent"
36
})
NEW
37
public class TRSAKeyValueType {
×
38

39
    @XmlElement(name = "Modulus", required = true)
40
    protected byte[] modulus;
41
    @XmlElement(name = "Exponent", required = true)
42
    protected byte[] exponent;
43

44
    /**
45
     * Obtém o valor da propriedade modulus.
46
     * 
47
     * @return
48
     *     possible object is
49
     *     byte[]
50
     */
51
    public byte[] getModulus() {
NEW
52
        return modulus;
×
53
    }
54

55
    /**
56
     * Define o valor da propriedade modulus.
57
     * 
58
     * @param value
59
     *     allowed object is
60
     *     byte[]
61
     */
62
    public void setModulus(byte[] value) {
NEW
63
        this.modulus = value;
×
NEW
64
    }
×
65

66
    /**
67
     * Obtém o valor da propriedade exponent.
68
     * 
69
     * @return
70
     *     possible object is
71
     *     byte[]
72
     */
73
    public byte[] getExponent() {
NEW
74
        return exponent;
×
75
    }
76

77
    /**
78
     * Define o valor da propriedade exponent.
79
     * 
80
     * @param value
81
     *     allowed object is
82
     *     byte[]
83
     */
84
    public void setExponent(byte[] value) {
NEW
85
        this.exponent = value;
×
NEW
86
    }
×
87

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