Class EncryptCertificateType
- java.lang.Object
-
- net.webpdf.wsclient.schema.operation.EncryptCertificateType
-
public class EncryptCertificateType extends Object
<?xml version="1.0" encoding="UTF-8"?><p xmlns:p321944_="http://jaxb2-commons.dev.java.net/basic/inheritance" xmlns:p909790_="https://jakarta.ee/xml/ns/jaxb" xmlns:tns="http://schema.webpdf.de/1.0/operation" xmlns:xs="http://www.w3.org/2001/XMLSchema">These parameters can be used to set the asymmetric encryption of a PDF document.</p>
Java class for EncryptCertificateType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="EncryptCertificateType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="recipient" type="{http://schema.webpdf.de/1.0/operation}RecipientType" maxOccurs="unbounded"/> </sequence> <attribute name="encryptionKey" type="{http://schema.webpdf.de/1.0/operation}PdfEncryptionKeyType" default="RC4_128" /> <attribute name="contentEncryption" type="{http://schema.webpdf.de/1.0/operation}PdfContentEncryptionType" default="encryptEverything" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected PdfContentEncryptionTypecontentEncryptionprotected PdfEncryptionKeyTypeencryptionKeyprotected List<RecipientType>recipient
-
Constructor Summary
Constructors Constructor Description EncryptCertificateType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PdfContentEncryptionTypegetContentEncryption()Gets the value of the contentEncryption property.PdfEncryptionKeyTypegetEncryptionKey()Gets the value of the encryptionKey property.List<RecipientType>getRecipient()Gets the value of the recipient property.booleanisSetContentEncryption()booleanisSetEncryptionKey()booleanisSetRecipient()voidsetContentEncryption(PdfContentEncryptionType value)Sets the value of the contentEncryption property.voidsetEncryptionKey(PdfEncryptionKeyType value)Sets the value of the encryptionKey property.voidunsetRecipient()
-
-
-
Field Detail
-
recipient
protected List<RecipientType> recipient
-
encryptionKey
protected PdfEncryptionKeyType encryptionKey
-
contentEncryption
protected PdfContentEncryptionType contentEncryption
-
-
Method Detail
-
getRecipient
public List<RecipientType> getRecipient()
Gets the value of the recipient property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the Jakarta XML Binding object. This is why there is not a
setmethod for the recipient property.For example, to add a new item, do as follows:
getRecipient().add(newItem);Objects of the following type(s) are allowed in the list
RecipientType- Returns:
- The value of the recipient property.
-
isSetRecipient
public boolean isSetRecipient()
-
unsetRecipient
public void unsetRecipient()
-
getEncryptionKey
public PdfEncryptionKeyType getEncryptionKey()
Gets the value of the encryptionKey property.- Returns:
- possible object is
PdfEncryptionKeyType
-
setEncryptionKey
public void setEncryptionKey(PdfEncryptionKeyType value)
Sets the value of the encryptionKey property.- Parameters:
value- allowed object isPdfEncryptionKeyType
-
isSetEncryptionKey
public boolean isSetEncryptionKey()
-
getContentEncryption
public PdfContentEncryptionType getContentEncryption()
Gets the value of the contentEncryption property.- Returns:
- possible object is
PdfContentEncryptionType
-
setContentEncryption
public void setContentEncryption(PdfContentEncryptionType value)
Sets the value of the contentEncryption property.- Parameters:
value- allowed object isPdfContentEncryptionType
-
isSetContentEncryption
public boolean isSetContentEncryption()
-
-