KickJava   Java API By Example, From Geeks To Geeks.

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


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.XmlElement;
7 import javax.xml.bind.annotation.XmlType;
8
9
10 /**
11  * <p>Java class for CipherDataType complex type.
12  *
13  * <p>The following schema fragment specifies the expected content contained within this class.
14  *
15  * <pre>
16  * &lt;complexType name="CipherDataType">
17  * &lt;complexContent>
18  * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
19  * &lt;choice>
20  * &lt;element name="CipherValue" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
21  * &lt;element ref="{http://www.w3.org/2001/04/xmlenc#}CipherReference"/>
22  * &lt;/choice>
23  * &lt;/restriction>
24  * &lt;/complexContent>
25  * &lt;/complexType>
26  * </pre>
27  *
28  *
29  */

30 @XmlAccessorType(XmlAccessType.FIELD)
31 @XmlType(name = "CipherDataType", propOrder = {
32     "cipherValue",
33     "cipherReference"
34 })
35 public class CipherDataType {
36
37     @XmlElement(name = "CipherValue")
38     protected byte[] cipherValue;
39     @XmlElement(name = "CipherReference")
40     protected CipherReferenceType cipherReference;
41
42     /**
43      * Gets the value of the cipherValue property.
44      *
45      * @return
46      * possible object is
47      * byte[]
48      */

49     public byte[] getCipherValue() {
50         return cipherValue;
51     }
52
53     /**
54      * Sets the value of the cipherValue property.
55      *
56      * @param value
57      * allowed object is
58      * byte[]
59      */

60     public void setCipherValue(byte[] value) {
61         this.cipherValue = ((byte[]) value);
62     }
63
64     /**
65      * Gets the value of the cipherReference property.
66      *
67      * @return
68      * possible object is
69      * {@link CipherReferenceType }
70      *
71      */

72     public CipherReferenceType getCipherReference() {
73         return cipherReference;
74     }
75
76     /**
77      * Sets the value of the cipherReference property.
78      *
79      * @param value
80      * allowed object is
81      * {@link CipherReferenceType }
82      *
83      */

84     public void setCipherReference(CipherReferenceType value) {
85         this.cipherReference = value;
86     }
87
88 }
89
Popular Tags