KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > xml > dsig > core > DSAKeyValueType


1 //
2
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b26-ea3
3
// See <a HREF="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
4
// Any modifications to this file will be lost upon recompilation of the source schema.
5
// Generated on: 2006.02.24 at 05:55:09 PM PST
6
//
7

8
9 package com.sun.xml.dsig.core;
10
11 import javax.xml.bind.annotation.XmlAccessType;
12 import javax.xml.bind.annotation.XmlAccessorType;
13 import javax.xml.bind.annotation.XmlElement;
14 import javax.xml.bind.annotation.XmlType;
15 import com.sun.xml.dsig.core.DSAKeyValueType;
16
17
18 /**
19  * <p>Java class for DSAKeyValueType complex type.
20  *
21  * <p>The following schema fragment specifies the expected content contained within this class.
22  *
23  * <pre>
24  * &lt;complexType name="DSAKeyValueType">
25  * &lt;complexContent>
26  * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
27  * &lt;sequence>
28  * &lt;sequence minOccurs="0">
29  * &lt;element name="P" type="{http://www.w3.org/2000/09/xmldsig#}CryptoBinary"/>
30  * &lt;element name="Q" type="{http://www.w3.org/2000/09/xmldsig#}CryptoBinary"/>
31  * &lt;/sequence>
32  * &lt;element name="G" type="{http://www.w3.org/2000/09/xmldsig#}CryptoBinary" minOccurs="0"/>
33  * &lt;element name="Y" type="{http://www.w3.org/2000/09/xmldsig#}CryptoBinary"/>
34  * &lt;element name="J" type="{http://www.w3.org/2000/09/xmldsig#}CryptoBinary" minOccurs="0"/>
35  * &lt;sequence minOccurs="0">
36  * &lt;element name="Seed" type="{http://www.w3.org/2000/09/xmldsig#}CryptoBinary"/>
37  * &lt;element name="PgenCounter" type="{http://www.w3.org/2000/09/xmldsig#}CryptoBinary"/>
38  * &lt;/sequence>
39  * &lt;/sequence>
40  * &lt;/restriction>
41  * &lt;/complexContent>
42  * &lt;/complexType>
43  * </pre>
44  *
45  *
46  */

47 @XmlAccessorType(XmlAccessType.FIELD)
48 @XmlType(name = "DSAKeyValueType", propOrder = {
49     "p",
50     "q",
51     "g",
52     "y",
53     "j",
54     "seed",
55     "pgenCounter"
56 })
57 public class DSAKeyValueType {
58
59     @XmlElement(name = "P", namespace = "http://www.w3.org/2000/09/xmldsig#")
60     protected byte[] p;
61     @XmlElement(name = "Q", namespace = "http://www.w3.org/2000/09/xmldsig#")
62     protected byte[] q;
63     @XmlElement(name = "G", namespace = "http://www.w3.org/2000/09/xmldsig#")
64     protected byte[] g;
65     @XmlElement(name = "Y", namespace = "http://www.w3.org/2000/09/xmldsig#")
66     protected byte[] y;
67     @XmlElement(name = "J", namespace = "http://www.w3.org/2000/09/xmldsig#")
68     protected byte[] j;
69     @XmlElement(name = "Seed", namespace = "http://www.w3.org/2000/09/xmldsig#")
70     protected byte[] seed;
71     @XmlElement(name = "PgenCounter", namespace = "http://www.w3.org/2000/09/xmldsig#")
72     protected byte[] pgenCounter;
73
74     /**
75      * Gets the value of the p property.
76      *
77      * @return
78      * possible object is
79      * byte[]
80      */

81     public byte[] getP() {
82         return p;
83     }
84
85     /**
86      * Sets the value of the p property.
87      *
88      * @param value
89      * allowed object is
90      * byte[]
91      */

92     public void setP(byte[] value) {
93         this.p = ((byte[]) value);
94     }
95
96     /**
97      * Gets the value of the q property.
98      *
99      * @return
100      * possible object is
101      * byte[]
102      */

103     public byte[] getQ() {
104         return q;
105     }
106
107     /**
108      * Sets the value of the q property.
109      *
110      * @param value
111      * allowed object is
112      * byte[]
113      */

114     public void setQ(byte[] value) {
115         this.q = ((byte[]) value);
116     }
117
118     /**
119      * Gets the value of the g property.
120      *
121      * @return
122      * possible object is
123      * byte[]
124      */

125     public byte[] getG() {
126         return g;
127     }
128
129     /**
130      * Sets the value of the g property.
131      *
132      * @param value
133      * allowed object is
134      * byte[]
135      */

136     public void setG(byte[] value) {
137         this.g = ((byte[]) value);
138     }
139
140     /**
141      * Gets the value of the y property.
142      *
143      * @return
144      * possible object is
145      * byte[]
146      */

147     public byte[] getY() {
148         return y;
149     }
150
151     /**
152      * Sets the value of the y property.
153      *
154      * @param value
155      * allowed object is
156      * byte[]
157      */

158     public void setY(byte[] value) {
159         this.y = ((byte[]) value);
160     }
161
162     /**
163      * Gets the value of the j property.
164      *
165      * @return
166      * possible object is
167      * byte[]
168      */

169     public byte[] getJ() {
170         return j;
171     }
172
173     /**
174      * Sets the value of the j property.
175      *
176      * @param value
177      * allowed object is
178      * byte[]
179      */

180     public void setJ(byte[] value) {
181         this.j = ((byte[]) value);
182     }
183
184     /**
185      * Gets the value of the seed property.
186      *
187      * @return
188      * possible object is
189      * byte[]
190      */

191     public byte[] getSeed() {
192         return seed;
193     }
194
195     /**
196      * Sets the value of the seed property.
197      *
198      * @param value
199      * allowed object is
200      * byte[]
201      */

202     public void setSeed(byte[] value) {
203         this.seed = ((byte[]) value);
204     }
205
206     /**
207      * Gets the value of the pgenCounter property.
208      *
209      * @return
210      * possible object is
211      * byte[]
212      */

213     public byte[] getPgenCounter() {
214         return pgenCounter;
215     }
216
217     /**
218      * Sets the value of the pgenCounter property.
219      *
220      * @param value
221      * allowed object is
222      * byte[]
223      */

224     public void setPgenCounter(byte[] value) {
225         this.pgenCounter = ((byte[]) value);
226     }
227
228 }
229
Popular Tags