1 //
2 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-661
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: 2021.01.15 at 11:43:19 AM EST
6 //
7
8
9 package com.healthmarketscience.jackcess.crypt.model;
10
11 /**
12 * <p>Java class for CT_Encryption complex type.
13 *
14 * <p>The following schema fragment specifies the expected content contained within this class.
15 *
16 * <pre>
17 * <complexType name="CT_Encryption">
18 * <complexContent>
19 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
20 * <sequence>
21 * <element name="keyData" type="{http://schemas.microsoft.com/office/2006/encryption}CT_KeyData"/>
22 * <element name="dataIntegrity" type="{http://schemas.microsoft.com/office/2006/encryption}CT_DataIntegrity" minOccurs="0"/>
23 * <element name="keyEncryptors" type="{http://schemas.microsoft.com/office/2006/encryption}CT_KeyEncryptors"/>
24 * </sequence>
25 * </restriction>
26 * </complexContent>
27 * </complexType>
28 * </pre>
29 *
30 *
31 */
32 // @XmlAccessorType(XmlAccessType.FIELD)
33 // @XmlType(name = "CT_Encryption", propOrder = {
34 // "keyData",
35 // "dataIntegrity",
36 // "keyEncryptors"
37 // })
38 public class CTEncryption {
39
40 // @XmlElement(required = true)
41 protected CTKeyData keyData;
42 protected CTDataIntegrity dataIntegrity;
43 // @XmlElement(required = true)
44 protected CTKeyEncryptors keyEncryptors;
45
46 /**
47 * Gets the value of the keyData property.
48 *
49 * @return
50 * possible object is
51 * {@link CTKeyData }
52 *
53 */
54 public CTKeyData getKeyData() {
55 return keyData;
56 }
57
58 /**
59 * Sets the value of the keyData property.
60 *
61 * @param value
62 * allowed object is
63 * {@link CTKeyData }
64 *
65 */
66 public void setKeyData(CTKeyData value) {
67 this.keyData = value;
68 }
69
70 /**
71 * Gets the value of the dataIntegrity property.
72 *
73 * @return
74 * possible object is
75 * {@link CTDataIntegrity }
76 *
77 */
78 public CTDataIntegrity getDataIntegrity() {
79 return dataIntegrity;
80 }
81
82 /**
83 * Sets the value of the dataIntegrity property.
84 *
85 * @param value
86 * allowed object is
87 * {@link CTDataIntegrity }
88 *
89 */
90 public void setDataIntegrity(CTDataIntegrity value) {
91 this.dataIntegrity = value;
92 }
93
94 /**
95 * Gets the value of the keyEncryptors property.
96 *
97 * @return
98 * possible object is
99 * {@link CTKeyEncryptors }
100 *
101 */
102 public CTKeyEncryptors getKeyEncryptors() {
103 return keyEncryptors;
104 }
105
106 /**
107 * Sets the value of the keyEncryptors property.
108 *
109 * @param value
110 * allowed object is
111 * {@link CTKeyEncryptors }
112 *
113 */
114 public void setKeyEncryptors(CTKeyEncryptors value) {
115 this.keyEncryptors = value;
116 }
117
118 }