com.healthmarketscience.jackcess.cryptmodel.CTDataIntegrity 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:40 PM EDT
//
package com.healthmarketscience.jackcess.cryptmodel;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for CT_DataIntegrity complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="CT_DataIntegrity">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="encryptedHmacKey" use="required" type="{http://www.w3.org/2001/XMLSchema}base64Binary" />
* <attribute name="encryptedHmacValue" use="required" type="{http://www.w3.org/2001/XMLSchema}base64Binary" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CT_DataIntegrity")
public class CTDataIntegrity {
@XmlAttribute(required = true)
protected byte[] encryptedHmacKey;
@XmlAttribute(required = true)
protected byte[] encryptedHmacValue;
/**
* Gets the value of the encryptedHmacKey property.
*
* @return
* possible object is
* byte[]
*/
public byte[] getEncryptedHmacKey() {
return encryptedHmacKey;
}
/**
* Sets the value of the encryptedHmacKey property.
*
* @param value
* allowed object is
* byte[]
*/
public void setEncryptedHmacKey(byte[] value) {
this.encryptedHmacKey = ((byte[]) value);
}
/**
* Gets the value of the encryptedHmacValue property.
*
* @return
* possible object is
* byte[]
*/
public byte[] getEncryptedHmacValue() {
return encryptedHmacValue;
}
/**
* Sets the value of the encryptedHmacValue property.
*
* @param value
* allowed object is
* byte[]
*/
public void setEncryptedHmacValue(byte[] value) {
this.encryptedHmacValue = ((byte[]) value);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy