All Downloads are FREE. Search and download functionalities are using the official Maven repository.

eu.europa.esig.dss.diagnostic.jaxb.XmlPDFSignatureDictionary Maven / Gradle / Ivy

The newest version!
//
// This file was generated by the Eclipse Implementation of JAXB, v3.0.2 
// See https://eclipse-ee4j.github.io/jaxb-ri 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2024.06.17 at 03:23:20 PM EEST 
//


package eu.europa.esig.dss.diagnostic.jaxb;

import java.io.Serializable;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;


/**
 * 

Java class for PDFSignatureDictionary complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="PDFSignatureDictionary">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="SignerName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="Type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="Filter" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="SubFilter" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="ContactInfo" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="Location" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="Reason" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="SignatureByteRange" type="{http://dss.esig.europa.eu/validation/diagnostic}ByteRange" minOccurs="0"/>
 *         <element name="DocMDP" minOccurs="0">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <sequence>
 *                   <element name="Permissions" type="{http://dss.esig.europa.eu/validation/diagnostic}CertificationPermission"/>
 *                 </sequence>
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *         <element name="FieldMDP" type="{http://dss.esig.europa.eu/validation/diagnostic}PDFLockDictionary" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="consistent" use="required" type="{http://www.w3.org/2001/XMLSchema}boolean" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PDFSignatureDictionary", propOrder = { "signerName", "type", "filter", "subFilter", "contactInfo", "location", "reason", "signatureByteRange", "docMDP", "fieldMDP" }) public class XmlPDFSignatureDictionary implements Serializable { private final static long serialVersionUID = 1L; @XmlElement(name = "SignerName") protected String signerName; @XmlElement(name = "Type") protected String type; @XmlElement(name = "Filter") protected String filter; @XmlElement(name = "SubFilter") protected String subFilter; @XmlElement(name = "ContactInfo") protected String contactInfo; @XmlElement(name = "Location") protected String location; @XmlElement(name = "Reason") protected String reason; @XmlElement(name = "SignatureByteRange") protected XmlByteRange signatureByteRange; @XmlElement(name = "DocMDP") protected XmlDocMDP docMDP; @XmlElement(name = "FieldMDP") protected XmlPDFLockDictionary fieldMDP; @XmlAttribute(name = "consistent", required = true) protected boolean consistent; /** * Gets the value of the signerName property. * * @return * possible object is * {@link String } * */ public String getSignerName() { return signerName; } /** * Sets the value of the signerName property. * * @param value * allowed object is * {@link String } * */ public void setSignerName(String value) { this.signerName = value; } /** * Gets the value of the type property. * * @return * possible object is * {@link String } * */ public String getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link String } * */ public void setType(String value) { this.type = value; } /** * Gets the value of the filter property. * * @return * possible object is * {@link String } * */ public String getFilter() { return filter; } /** * Sets the value of the filter property. * * @param value * allowed object is * {@link String } * */ public void setFilter(String value) { this.filter = value; } /** * Gets the value of the subFilter property. * * @return * possible object is * {@link String } * */ public String getSubFilter() { return subFilter; } /** * Sets the value of the subFilter property. * * @param value * allowed object is * {@link String } * */ public void setSubFilter(String value) { this.subFilter = value; } /** * Gets the value of the contactInfo property. * * @return * possible object is * {@link String } * */ public String getContactInfo() { return contactInfo; } /** * Sets the value of the contactInfo property. * * @param value * allowed object is * {@link String } * */ public void setContactInfo(String value) { this.contactInfo = value; } /** * Gets the value of the location property. * * @return * possible object is * {@link String } * */ public String getLocation() { return location; } /** * Sets the value of the location property. * * @param value * allowed object is * {@link String } * */ public void setLocation(String value) { this.location = value; } /** * Gets the value of the reason property. * * @return * possible object is * {@link String } * */ public String getReason() { return reason; } /** * Sets the value of the reason property. * * @param value * allowed object is * {@link String } * */ public void setReason(String value) { this.reason = value; } /** * Gets the value of the signatureByteRange property. * * @return * possible object is * {@link XmlByteRange } * */ public XmlByteRange getSignatureByteRange() { return signatureByteRange; } /** * Sets the value of the signatureByteRange property. * * @param value * allowed object is * {@link XmlByteRange } * */ public void setSignatureByteRange(XmlByteRange value) { this.signatureByteRange = value; } /** * Gets the value of the docMDP property. * * @return * possible object is * {@link XmlDocMDP } * */ public XmlDocMDP getDocMDP() { return docMDP; } /** * Sets the value of the docMDP property. * * @param value * allowed object is * {@link XmlDocMDP } * */ public void setDocMDP(XmlDocMDP value) { this.docMDP = value; } /** * Gets the value of the fieldMDP property. * * @return * possible object is * {@link XmlPDFLockDictionary } * */ public XmlPDFLockDictionary getFieldMDP() { return fieldMDP; } /** * Sets the value of the fieldMDP property. * * @param value * allowed object is * {@link XmlPDFLockDictionary } * */ public void setFieldMDP(XmlPDFLockDictionary value) { this.fieldMDP = value; } /** * Gets the value of the consistent property. * */ public boolean isConsistent() { return consistent; } /** * Sets the value of the consistent property. * */ public void setConsistent(boolean value) { this.consistent = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy