KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > w3 > _2001 > _04 > xmlenc_ > EncryptedKeyType


1
2 package org.w3._2001._04.xmlenc_;
3
4 import javax.xml.bind.annotation.XmlAccessType;
5 import javax.xml.bind.annotation.XmlAccessorType;
6 import javax.xml.bind.annotation.XmlAttribute;
7 import javax.xml.bind.annotation.XmlElement;
8 import javax.xml.bind.annotation.XmlType;
9
10
11 /**
12  * <p>Java class for EncryptedKeyType complex type.
13  *
14  * <p>The following schema fragment specifies the expected content contained within this class.
15  *
16  * <pre>
17  * &lt;complexType name="EncryptedKeyType">
18  * &lt;complexContent>
19  * &lt;extension base="{http://www.w3.org/2001/04/xmlenc#}EncryptedType">
20  * &lt;sequence>
21  * &lt;element ref="{http://www.w3.org/2001/04/xmlenc#}ReferenceList" minOccurs="0"/>
22  * &lt;element name="CarriedKeyName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
23  * &lt;/sequence>
24  * &lt;attribute name="Recipient" type="{http://www.w3.org/2001/XMLSchema}string" />
25  * &lt;/extension>
26  * &lt;/complexContent>
27  * &lt;/complexType>
28  * </pre>
29  *
30  *
31  */

32 @XmlAccessorType(XmlAccessType.FIELD)
33 @XmlType(name = "EncryptedKeyType", propOrder = {
34     "referenceList",
35     "carriedKeyName"
36 })
37 public class EncryptedKeyType
38     extends EncryptedType
39 {
40
41     @XmlElement(name = "ReferenceList")
42     protected ReferenceList referenceList;
43     @XmlElement(name = "CarriedKeyName")
44     protected String JavaDoc carriedKeyName;
45     @XmlAttribute(name = "Recipient")
46     protected String JavaDoc recipient;
47
48     /**
49      * Gets the value of the referenceList property.
50      *
51      * @return
52      * possible object is
53      * {@link ReferenceList }
54      *
55      */

56     public ReferenceList getReferenceList() {
57         return referenceList;
58     }
59
60     /**
61      * Sets the value of the referenceList property.
62      *
63      * @param value
64      * allowed object is
65      * {@link ReferenceList }
66      *
67      */

68     public void setReferenceList(ReferenceList value) {
69         this.referenceList = value;
70     }
71
72     /**
73      * Gets the value of the carriedKeyName property.
74      *
75      * @return
76      * possible object is
77      * {@link String }
78      *
79      */

80     public String JavaDoc getCarriedKeyName() {
81         return carriedKeyName;
82     }
83
84     /**
85      * Sets the value of the carriedKeyName property.
86      *
87      * @param value
88      * allowed object is
89      * {@link String }
90      *
91      */

92     public void setCarriedKeyName(String JavaDoc value) {
93         this.carriedKeyName = value;
94     }
95
96     /**
97      * Gets the value of the recipient property.
98      *
99      * @return
100      * possible object is
101      * {@link String }
102      *
103      */

104     public String JavaDoc getRecipient() {
105         return recipient;
106     }
107
108     /**
109      * Sets the value of the recipient property.
110      *
111      * @param value
112      * allowed object is
113      * {@link String }
114      *
115      */

116     public void setRecipient(String JavaDoc value) {
117         this.recipient = value;
118     }
119
120 }
121
Popular Tags