Class XmlPDFRevision
java.lang.Object
eu.europa.esig.dss.diagnostic.jaxb.XmlPDFRevision
- All Implemented Interfaces:
Serializable
public class XmlPDFRevision extends Object implements Serializable
Java class for PDFRevision complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="PDFRevision"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="SignatureFieldName" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/> <element name="PDFSignatureDictionary" type="{http://dss.esig.europa.eu/validation/diagnostic}PDFSignatureDictionary" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
- See Also:
- Serialized Form
-
Field Summary
Fields Modifier and Type Field Description protected XmlPDFSignatureDictionary
pdfSignatureDictionary
protected List<String>
signatureFieldName
-
Constructor Summary
Constructors Constructor Description XmlPDFRevision()
-
Method Summary
Modifier and Type Method Description XmlPDFSignatureDictionary
getPDFSignatureDictionary()
Gets the value of the pdfSignatureDictionary property.List<String>
getSignatureFieldName()
Gets the value of the signatureFieldName property.void
setPDFSignatureDictionary(XmlPDFSignatureDictionary value)
Sets the value of the pdfSignatureDictionary property.
-
Field Details
-
Constructor Details
-
XmlPDFRevision
public XmlPDFRevision()
-
-
Method Details
-
getSignatureFieldName
Gets the value of the signatureFieldName 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 JAXB object. This is why there is not a
set
method for the signatureFieldName property.For example, to add a new item, do as follows:
getSignatureFieldName().add(newItem);
Objects of the following type(s) are allowed in the list
String
-
getPDFSignatureDictionary
Gets the value of the pdfSignatureDictionary property.- Returns:
- possible object is
XmlPDFSignatureDictionary
-
setPDFSignatureDictionary
Sets the value of the pdfSignatureDictionary property.- Parameters:
value
- allowed object isXmlPDFSignatureDictionary
-