KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > ejbca > core > protocol > ws > client > gen > Certificate


1
2 package org.ejbca.core.protocol.ws.client.gen;
3
4 import javax.xml.bind.annotation.XmlAccessType;
5 import javax.xml.bind.annotation.XmlAccessorType;
6 import javax.xml.bind.annotation.XmlType;
7
8
9 /**
10  * <p>Java class for certificate complex type.
11  *
12  * <p>The following schema fragment specifies the expected content contained within this class.
13  *
14  * <pre>
15  * &lt;complexType name="certificate">
16  * &lt;complexContent>
17  * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
18  * &lt;sequence>
19  * &lt;element name="certificateData" type="{http://www.w3.org/2001/XMLSchema}base64Binary" minOccurs="0"/>
20  * &lt;/sequence>
21  * &lt;/restriction>
22  * &lt;/complexContent>
23  * &lt;/complexType>
24  * </pre>
25  *
26  *
27  */

28 @XmlAccessorType(XmlAccessType.FIELD)
29 @XmlType(name = "certificate", propOrder = {
30     "certificateData"
31 })
32 public class Certificate {
33
34     protected byte[] certificateData;
35
36     /**
37      * Gets the value of the certificateData property.
38      *
39      * @return
40      * possible object is
41      * byte[]
42      */

43     public byte[] getCertificateData() {
44         return certificateData;
45     }
46
47     /**
48      * Sets the value of the certificateData property.
49      *
50      * @param value
51      * allowed object is
52      * byte[]
53      */

54     public void setCertificateData(byte[] value) {
55         this.certificateData = value;
56     }
57
58 }
59
Popular Tags