Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
RSAKeyValueType |
|
| 1.0;1 |
1 | ||
2 | package org.kuali.student.security.xmldsig.dto; | |
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 RSAKeyValueType complex type. | |
12 | * | |
13 | * <p>The following schema fragment specifies the expected content contained within this class. | |
14 | * | |
15 | * <pre> | |
16 | * <complexType name="RSAKeyValueType"> | |
17 | * <complexContent> | |
18 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> | |
19 | * <sequence> | |
20 | * <element name="Modulus" type="{http://www.w3.org/2000/09/xmldsig#}CryptoBinary"/> | |
21 | * <element name="Exponent" type="{http://www.w3.org/2000/09/xmldsig#}CryptoBinary"/> | |
22 | * </sequence> | |
23 | * </restriction> | |
24 | * </complexContent> | |
25 | * </complexType> | |
26 | * </pre> | |
27 | * | |
28 | * | |
29 | */ | |
30 | @XmlAccessorType(XmlAccessType.FIELD) | |
31 | @XmlType(name = "RSAKeyValueType", propOrder = { | |
32 | "modulus", | |
33 | "exponent" | |
34 | }) | |
35 | 0 | public class RSAKeyValueType { |
36 | ||
37 | @XmlElement(name = "Modulus", required = true) | |
38 | protected byte[] modulus; | |
39 | @XmlElement(name = "Exponent", required = true) | |
40 | protected byte[] exponent; | |
41 | ||
42 | /** | |
43 | * Gets the value of the modulus property. | |
44 | * | |
45 | * @return | |
46 | * possible object is | |
47 | * byte[] | |
48 | */ | |
49 | public byte[] getModulus() { | |
50 | 0 | return modulus; |
51 | } | |
52 | ||
53 | /** | |
54 | * Sets the value of the modulus property. | |
55 | * | |
56 | * @param value | |
57 | * allowed object is | |
58 | * byte[] | |
59 | */ | |
60 | public void setModulus(byte[] value) { | |
61 | 0 | this.modulus = ((byte[]) value); |
62 | 0 | } |
63 | ||
64 | /** | |
65 | * Gets the value of the exponent property. | |
66 | * | |
67 | * @return | |
68 | * possible object is | |
69 | * byte[] | |
70 | */ | |
71 | public byte[] getExponent() { | |
72 | 0 | return exponent; |
73 | } | |
74 | ||
75 | /** | |
76 | * Sets the value of the exponent property. | |
77 | * | |
78 | * @param value | |
79 | * allowed object is | |
80 | * byte[] | |
81 | */ | |
82 | public void setExponent(byte[] value) { | |
83 | 0 | this.exponent = ((byte[]) value); |
84 | 0 | } |
85 | ||
86 | } |