KickJava   Java API By Example, From Geeks To Geeks.

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


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 keyStore complex type.
11  *
12  * <p>The following schema fragment specifies the expected content contained within this class.
13  *
14  * <pre>
15  * &lt;complexType name="keyStore">
16  * &lt;complexContent>
17  * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
18  * &lt;sequence>
19  * &lt;element name="keystoreData" 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 = "keyStore", propOrder = {
30     "keystoreData"
31 })
32 public class KeyStore {
33
34     protected byte[] keystoreData;
35
36     /**
37      * Gets the value of the keystoreData property.
38      *
39      * @return
40      * possible object is
41      * byte[]
42      */

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

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