com.healthmarketscience.jackcess.cryptmodel.password.CTEncryption Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jackcess-encrypt Show documentation
Show all versions of jackcess-encrypt Show documentation
An add-on to the Jackcess library for handling encryption in MS Access files.
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-661
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2017.10.09 at 09:36:41 PM EDT
//
package com.healthmarketscience.jackcess.cryptmodel.password;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for CT_Encryption complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="CT_Encryption">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="keyData" type="{http://schemas.microsoft.com/office/2006/encryption}CT_KeyData"/>
* <element name="dataIntegrity" type="{http://schemas.microsoft.com/office/2006/encryption}CT_DataIntegrity" minOccurs="0"/>
* <element name="keyEncryptors" type="{http://schemas.microsoft.com/office/2006/encryption}CT_KeyEncryptors"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CT_Encryption", propOrder = {
"keyData",
"dataIntegrity",
"keyEncryptors"
})
public class CTEncryption {
@XmlElement(required = true)
protected CTKeyData keyData;
protected CTDataIntegrity dataIntegrity;
@XmlElement(required = true)
protected CTKeyEncryptors keyEncryptors;
/**
* Gets the value of the keyData property.
*
* @return
* possible object is
* {@link CTKeyData }
*
*/
public CTKeyData getKeyData() {
return keyData;
}
/**
* Sets the value of the keyData property.
*
* @param value
* allowed object is
* {@link CTKeyData }
*
*/
public void setKeyData(CTKeyData value) {
this.keyData = value;
}
/**
* Gets the value of the dataIntegrity property.
*
* @return
* possible object is
* {@link CTDataIntegrity }
*
*/
public CTDataIntegrity getDataIntegrity() {
return dataIntegrity;
}
/**
* Sets the value of the dataIntegrity property.
*
* @param value
* allowed object is
* {@link CTDataIntegrity }
*
*/
public void setDataIntegrity(CTDataIntegrity value) {
this.dataIntegrity = value;
}
/**
* Gets the value of the keyEncryptors property.
*
* @return
* possible object is
* {@link CTKeyEncryptors }
*
*/
public CTKeyEncryptors getKeyEncryptors() {
return keyEncryptors;
}
/**
* Sets the value of the keyEncryptors property.
*
* @param value
* allowed object is
* {@link CTKeyEncryptors }
*
*/
public void setKeyEncryptors(CTKeyEncryptors value) {
this.keyEncryptors = value;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy