KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > w3 > _2002 > _03 > xkms_ > PrivateKeyType


1
2 package org.w3._2002._03.xkms_;
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.XmlRootElement;
8 import javax.xml.bind.annotation.XmlType;
9 import org.w3._2001._04.xmlenc_.EncryptedDataType;
10
11
12 /**
13  * <p>Java class for PrivateKeyType complex type.
14  *
15  * <p>The following schema fragment specifies the expected content contained within this class.
16  *
17  * <pre>
18  * &lt;complexType name="PrivateKeyType">
19  * &lt;complexContent>
20  * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21  * &lt;sequence>
22  * &lt;element ref="{http://www.w3.org/2001/04/xmlenc#}EncryptedData"/>
23  * &lt;/sequence>
24  * &lt;/restriction>
25  * &lt;/complexContent>
26  * &lt;/complexType>
27  * </pre>
28  *
29  *
30  */

31 @XmlRootElement
32 @XmlAccessorType(XmlAccessType.FIELD)
33 @XmlType(name = "PrivateKeyType", propOrder = {
34     "encryptedData"
35 })
36 public class PrivateKeyType {
37
38     @XmlElement(name = "EncryptedData", namespace = "http://www.w3.org/2001/04/xmlenc#", required = true)
39     protected EncryptedDataType encryptedData;
40
41     /**
42      * Gets the value of the encryptedData property.
43      *
44      * @return
45      * possible object is
46      * {@link EncryptedDataType }
47      *
48      */

49     public EncryptedDataType getEncryptedData() {
50         return encryptedData;
51     }
52
53     /**
54      * Sets the value of the encryptedData property.
55      *
56      * @param value
57      * allowed object is
58      * {@link EncryptedDataType }
59      *
60      */

61     public void setEncryptedData(EncryptedDataType value) {
62         this.encryptedData = value;
63     }
64
65 }
66
Popular Tags