KickJava   Java API By Example, From Geeks To Geeks.

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


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.RSAKeyValueType;
16
17
18 /**
19  * <p>Java class for RSAKeyValueType complex type.
20  *
21  * <p>The following schema fragment specifies the expected content contained within this class.
22  *
23  * <pre>
24  * &lt;complexType name="RSAKeyValueType">
25  * &lt;complexContent>
26  * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
27  * &lt;sequence>
28  * &lt;element name="Modulus" type="{http://www.w3.org/2000/09/xmldsig#}CryptoBinary"/>
29  * &lt;element name="Exponent" type="{http://www.w3.org/2000/09/xmldsig#}CryptoBinary"/>
30  * &lt;/sequence>
31  * &lt;/restriction>
32  * &lt;/complexContent>
33  * &lt;/complexType>
34  * </pre>
35  *
36  *
37  */

38 @XmlAccessorType(XmlAccessType.FIELD)
39 @XmlType(name = "RSAKeyValueType", propOrder = {
40     "modulus",
41     "exponent"
42 })
43 public class RSAKeyValueType {
44
45     @XmlElement(name = "Modulus", namespace = "http://www.w3.org/2000/09/xmldsig#")
46     protected byte[] modulus;
47     @XmlElement(name = "Exponent", namespace = "http://www.w3.org/2000/09/xmldsig#")
48     protected byte[] exponent;
49
50     /**
51      * Gets the value of the modulus property.
52      *
53      * @return
54      * possible object is
55      * byte[]
56      */

57     public byte[] getModulus() {
58         return modulus;
59     }
60
61     /**
62      * Sets the value of the modulus property.
63      *
64      * @param value
65      * allowed object is
66      * byte[]
67      */

68     public void setModulus(byte[] value) {
69         this.modulus = ((byte[]) value);
70     }
71
72     /**
73      * Gets the value of the exponent property.
74      *
75      * @return
76      * possible object is
77      * byte[]
78      */

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

90     public void setExponent(byte[] value) {
91         this.exponent = ((byte[]) value);
92     }
93
94 }
95
Popular Tags