com.healthmarketscience.jackcess.cryptmodel.cert.STCertificateKeyEncryptorUri 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.XmlEnum;
import javax.xml.bind.annotation.XmlEnumValue;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for ST_CertificateKeyEncryptorUri.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="ST_CertificateKeyEncryptorUri">
* <restriction base="{http://www.w3.org/2001/XMLSchema}token">
* <enumeration value="http://schemas.microsoft.com/office/2006/keyEncryptor/certificate"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "ST_CertificateKeyEncryptorUri")
@XmlEnum
public enum STCertificateKeyEncryptorUri {
@XmlEnumValue("http://schemas.microsoft.com/office/2006/keyEncryptor/certificate")
HTTP_SCHEMAS_MICROSOFT_COM_OFFICE_2006_KEY_ENCRYPTOR_CERTIFICATE("http://schemas.microsoft.com/office/2006/keyEncryptor/certificate");
private final String value;
STCertificateKeyEncryptorUri(String v) {
value = v;
}
public String value() {
return value;
}
public static STCertificateKeyEncryptorUri fromValue(String v) {
for (STCertificateKeyEncryptorUri c: STCertificateKeyEncryptorUri.values()) {
if (c.value.equals(v)) {
return c;
}
}
throw new IllegalArgumentException(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy