Subversion Repositories Integrator Subversion

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
695 blopes 1
 
2
package br.com.swconsultoria.nfe.schema.eventoCancNFe;
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
 * <p>Classe Java de X509DataType complex type.
12
 *
13
 * <p>O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe.
14
 *
15
 * <pre>
16
 * &lt;complexType name="X509DataType"&gt;
17
 *   &lt;complexContent&gt;
18
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
19
 *       &lt;sequence&gt;
20
 *         &lt;element name="X509Certificate" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/&gt;
21
 *       &lt;/sequence&gt;
22
 *     &lt;/restriction&gt;
23
 *   &lt;/complexContent&gt;
24
 * &lt;/complexType&gt;
25
 * </pre>
26
 *
27
 *
28
 */
29
@XmlAccessorType(XmlAccessType.FIELD)
30
@XmlType(name = "X509DataType", namespace = "http://www.w3.org/2000/09/xmldsig#", propOrder = {
31
    "x509Certificate"
32
})
33
public class X509DataType {
34
 
35
    @XmlElement(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", required = true)
36
    protected byte[] x509Certificate;
37
 
38
    /**
39
     * Obtém o valor da propriedade x509Certificate.
40
     *
41
     * @return
42
     *     possible object is
43
     *     byte[]
44
     */
45
    public byte[] getX509Certificate() {
46
        return x509Certificate;
47
    }
48
 
49
    /**
50
     * Define o valor da propriedade x509Certificate.
51
     *
52
     * @param value
53
     *     allowed object is
54
     *     byte[]
55
     */
56
    public void setX509Certificate(byte[] value) {
57
        this.x509Certificate = value;
58
    }
59
 
60
}