Class CTCertificateKeyEncryptor
- java.lang.Object
-
- com.healthmarketscience.jackcess.crypt.model.cert.CTCertificateKeyEncryptor
-
public class CTCertificateKeyEncryptor extends Object
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>
-
-
Constructor Summary
Constructors Constructor Description CTCertificateKeyEncryptor()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description byte[]getCertVerifier()Gets the value of the certVerifier property.byte[]getEncryptedKeyValue()Gets the value of the encryptedKeyValue property.byte[]getX509Certificate()Gets the value of the x509Certificate property.voidsetCertVerifier(byte[] value)Sets the value of the certVerifier property.voidsetEncryptedKeyValue(byte[] value)Sets the value of the encryptedKeyValue property.voidsetX509Certificate(byte[] value)Sets the value of the x509Certificate property.
-
-
-
Method Detail
-
getEncryptedKeyValue
public byte[] getEncryptedKeyValue()
Gets the value of the encryptedKeyValue property.- Returns:
- possible object is byte[]
-
setEncryptedKeyValue
public void setEncryptedKeyValue(byte[] value)
Sets the value of the encryptedKeyValue property.- Parameters:
value- allowed object is byte[]
-
getX509Certificate
public byte[] getX509Certificate()
Gets the value of the x509Certificate property.- Returns:
- possible object is byte[]
-
setX509Certificate
public void setX509Certificate(byte[] value)
Sets the value of the x509Certificate property.- Parameters:
value- allowed object is byte[]
-
getCertVerifier
public byte[] getCertVerifier()
Gets the value of the certVerifier property.- Returns:
- possible object is byte[]
-
setCertVerifier
public void setCertVerifier(byte[] value)
Sets the value of the certVerifier property.- Parameters:
value- allowed object is byte[]
-
-