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

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

There is a newer version: 6.0.d4j.2
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0 
// See https://javaee.github.io/jaxb-v2/ 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2021.10.20 at 09:59:47 AM EEST 
//


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

import java.io.Serializable;
import java.math.BigInteger;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlList;
import javax.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" minOccurs="0">
 *           <simpleType>
 *             <list itemType="{http://www.w3.org/2001/XMLSchema}integer" />
 *           </simpleType>
 *         </element>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PDFSignatureDictionary", propOrder = { "signerName", "type", "filter", "subFilter", "contactInfo", "location", "reason", "signatureByteRange" }) 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; @XmlList @XmlElement(name = "SignatureByteRange") protected List signatureByteRange; /** * 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. * *

* 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 signatureByteRange property. * *

* For example, to add a new item, do as follows: *

     *    getSignatureByteRange().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link BigInteger } * * */ public List getSignatureByteRange() { if (signatureByteRange == null) { signatureByteRange = new ArrayList(); } return this.signatureByteRange; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy