com.healthmarketscience.jackcess.cryptmodel.cert.CTCertificateKeyEncryptor 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.cert;
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_CertificateKeyEncryptor complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="CT_CertificateKeyEncryptor">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="encryptedKeyValue" use="required" type="{http://www.w3.org/2001/XMLSchema}base64Binary" />
* <attribute name="X509Certificate" use="required" type="{http://www.w3.org/2001/XMLSchema}base64Binary" />
* <attribute name="certVerifier" use="required" type="{http://www.w3.org/2001/XMLSchema}base64Binary" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CT_CertificateKeyEncryptor")
public class CTCertificateKeyEncryptor {
@XmlAttribute(required = true)
protected byte[] encryptedKeyValue;
@XmlAttribute(name = "X509Certificate", required = true)
protected byte[] x509Certificate;
@XmlAttribute(required = true)
protected byte[] certVerifier;
/**
* Gets the value of the encryptedKeyValue property.
*
* @return
* possible object is
* byte[]
*/
public byte[] getEncryptedKeyValue() {
return encryptedKeyValue;
}
/**
* Sets the value of the encryptedKeyValue property.
*
* @param value
* allowed object is
* byte[]
*/
public void setEncryptedKeyValue(byte[] value) {
this.encryptedKeyValue = ((byte[]) value);
}
/**
* Gets the value of the x509Certificate property.
*
* @return
* possible object is
* byte[]
*/
public byte[] getX509Certificate() {
return x509Certificate;
}
/**
* Sets the value of the x509Certificate property.
*
* @param value
* allowed object is
* byte[]
*/
public void setX509Certificate(byte[] value) {
this.x509Certificate = ((byte[]) value);
}
/**
* Gets the value of the certVerifier property.
*
* @return
* possible object is
* byte[]
*/
public byte[] getCertVerifier() {
return certVerifier;
}
/**
* Sets the value of the certVerifier property.
*
* @param value
* allowed object is
* byte[]
*/
public void setCertVerifier(byte[] value) {
this.certVerifier = ((byte[]) value);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy