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.cert; 10 11 /** 12 * <p>Java class for CT_CertificateKeyEncryptor complex type. 13 * 14 * <p>The following schema fragment specifies the expected content contained within this class. 15 * 16 * <pre> 17 * <complexType name="CT_CertificateKeyEncryptor"> 18 * <complexContent> 19 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> 20 * <attribute name="encryptedKeyValue" use="required" type="{http://www.w3.org/2001/XMLSchema}base64Binary" /> 21 * <attribute name="X509Certificate" use="required" type="{http://www.w3.org/2001/XMLSchema}base64Binary" /> 22 * <attribute name="certVerifier" use="required" type="{http://www.w3.org/2001/XMLSchema}base64Binary" /> 23 * </restriction> 24 * </complexContent> 25 * </complexType> 26 * </pre> 27 * 28 * 29 */ 30 // @XmlAccessorType(XmlAccessType.FIELD) 31 // @XmlType(name = "CT_CertificateKeyEncryptor") 32 public class CTCertificateKeyEncryptor { 33 34 // @XmlAttribute(required = true) 35 protected byte[] encryptedKeyValue; 36 // @XmlAttribute(name = "X509Certificate", required = true) 37 protected byte[] x509Certificate; 38 // @XmlAttribute(required = true) 39 protected byte[] certVerifier; 40 41 /** 42 * Gets the value of the encryptedKeyValue property. 43 * 44 * @return 45 * possible object is 46 * byte[] 47 */ 48 public byte[] getEncryptedKeyValue() { 49 return encryptedKeyValue; 50 } 51 52 /** 53 * Sets the value of the encryptedKeyValue property. 54 * 55 * @param value 56 * allowed object is 57 * byte[] 58 */ 59 public void setEncryptedKeyValue(byte[] value) { 60 this.encryptedKeyValue = ((byte[]) value); 61 } 62 63 /** 64 * Gets the value of the x509Certificate property. 65 * 66 * @return 67 * possible object is 68 * byte[] 69 */ 70 public byte[] getX509Certificate() { 71 return x509Certificate; 72 } 73 74 /** 75 * Sets the value of the x509Certificate property. 76 * 77 * @param value 78 * allowed object is 79 * byte[] 80 */ 81 public void setX509Certificate(byte[] value) { 82 this.x509Certificate = ((byte[]) value); 83 } 84 85 /** 86 * Gets the value of the certVerifier property. 87 * 88 * @return 89 * possible object is 90 * byte[] 91 */ 92 public byte[] getCertVerifier() { 93 return certVerifier; 94 } 95 96 /** 97 * Sets the value of the certVerifier property. 98 * 99 * @param value 100 * allowed object is 101 * byte[] 102 */ 103 public void setCertVerifier(byte[] value) { 104 this.certVerifier = ((byte[]) value); 105 } 106 107 }