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

eu.europa.esig.dss.detailedreport.jaxb.XmlSignature Maven / Gradle / Ivy

Go to download

Generated source from XSD for Detailed Report and additional XSLT (for HTML/PDF renderings).

There is a newer version: 6.1
Show newest version
//
// This file was generated by the Eclipse Implementation of JAXB, v2.3.8 
// See https://eclipse-ee4j.github.io/jaxb-ri 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2023.11.03 at 04:25:51 PM CET 
//


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

import java.io.Serializable;
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.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for Signature complex type. * *

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

 * <complexType name="Signature">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="ValidationProcessBasicSignature" type="{http://dss.esig.europa.eu/validation/detailed-report}ValidationProcessBasicSignature" minOccurs="0"/>
 *         <element name="Timestamp" type="{http://dss.esig.europa.eu/validation/detailed-report}Timestamp" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="EvidenceRecord" type="{http://dss.esig.europa.eu/validation/detailed-report}EvidenceRecord" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="ValidationProcessLongTermData" type="{http://dss.esig.europa.eu/validation/detailed-report}ValidationProcessLongTermData" minOccurs="0"/>
 *         <element name="ValidationProcessArchivalData" type="{http://dss.esig.europa.eu/validation/detailed-report}ValidationProcessArchivalData" minOccurs="0"/>
 *         <element name="ValidationSignatureQualification" type="{http://dss.esig.europa.eu/validation/detailed-report}ValidationSignatureQualification" minOccurs="0"/>
 *         <element name="Conclusion" type="{http://dss.esig.europa.eu/validation/detailed-report}Conclusion"/>
 *       </sequence>
 *       <attribute name="Id" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="CounterSignature" type="{http://www.w3.org/2001/XMLSchema}boolean" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Signature", propOrder = { "validationProcessBasicSignature", "timestamps", "evidenceRecords", "validationProcessLongTermData", "validationProcessArchivalData", "validationSignatureQualification", "conclusion" }) public class XmlSignature implements Serializable { private static final long serialVersionUID = 1L; @XmlElement(name = "ValidationProcessBasicSignature") protected XmlValidationProcessBasicSignature validationProcessBasicSignature; @XmlElement(name = "Timestamp") protected List timestamps; @XmlElement(name = "EvidenceRecord") protected List evidenceRecords; @XmlElement(name = "ValidationProcessLongTermData") protected XmlValidationProcessLongTermData validationProcessLongTermData; @XmlElement(name = "ValidationProcessArchivalData") protected XmlValidationProcessArchivalData validationProcessArchivalData; @XmlElement(name = "ValidationSignatureQualification") protected XmlValidationSignatureQualification validationSignatureQualification; @XmlElement(name = "Conclusion", required = true) protected XmlConclusion conclusion; @XmlAttribute(name = "Id") protected String id; @XmlAttribute(name = "CounterSignature") protected Boolean counterSignature; /** * Gets the value of the validationProcessBasicSignature property. * * @return * possible object is * {@link XmlValidationProcessBasicSignature } * */ public XmlValidationProcessBasicSignature getValidationProcessBasicSignature() { return validationProcessBasicSignature; } /** * Sets the value of the validationProcessBasicSignature property. * * @param value * allowed object is * {@link XmlValidationProcessBasicSignature } * */ public void setValidationProcessBasicSignature(XmlValidationProcessBasicSignature value) { this.validationProcessBasicSignature = value; } /** * Gets the value of the timestamps 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 timestamps property. * *

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

     *    getTimestamps().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link XmlTimestamp } * * */ public List getTimestamps() { if (timestamps == null) { timestamps = new ArrayList(); } return this.timestamps; } /** * Gets the value of the evidenceRecords 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 evidenceRecords property. * *

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

     *    getEvidenceRecords().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link XmlEvidenceRecord } * * */ public List getEvidenceRecords() { if (evidenceRecords == null) { evidenceRecords = new ArrayList(); } return this.evidenceRecords; } /** * Gets the value of the validationProcessLongTermData property. * * @return * possible object is * {@link XmlValidationProcessLongTermData } * */ public XmlValidationProcessLongTermData getValidationProcessLongTermData() { return validationProcessLongTermData; } /** * Sets the value of the validationProcessLongTermData property. * * @param value * allowed object is * {@link XmlValidationProcessLongTermData } * */ public void setValidationProcessLongTermData(XmlValidationProcessLongTermData value) { this.validationProcessLongTermData = value; } /** * Gets the value of the validationProcessArchivalData property. * * @return * possible object is * {@link XmlValidationProcessArchivalData } * */ public XmlValidationProcessArchivalData getValidationProcessArchivalData() { return validationProcessArchivalData; } /** * Sets the value of the validationProcessArchivalData property. * * @param value * allowed object is * {@link XmlValidationProcessArchivalData } * */ public void setValidationProcessArchivalData(XmlValidationProcessArchivalData value) { this.validationProcessArchivalData = value; } /** * Gets the value of the validationSignatureQualification property. * * @return * possible object is * {@link XmlValidationSignatureQualification } * */ public XmlValidationSignatureQualification getValidationSignatureQualification() { return validationSignatureQualification; } /** * Sets the value of the validationSignatureQualification property. * * @param value * allowed object is * {@link XmlValidationSignatureQualification } * */ public void setValidationSignatureQualification(XmlValidationSignatureQualification value) { this.validationSignatureQualification = value; } /** * Gets the value of the conclusion property. * * @return * possible object is * {@link XmlConclusion } * */ public XmlConclusion getConclusion() { return conclusion; } /** * Sets the value of the conclusion property. * * @param value * allowed object is * {@link XmlConclusion } * */ public void setConclusion(XmlConclusion value) { this.conclusion = value; } /** * Gets the value of the id property. * * @return * possible object is * {@link String } * */ public String getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link String } * */ public void setId(String value) { this.id = value; } /** * Gets the value of the counterSignature property. * * @return * possible object is * {@link Boolean } * */ public Boolean isCounterSignature() { return counterSignature; } /** * Sets the value of the counterSignature property. * * @param value * allowed object is * {@link Boolean } * */ public void setCounterSignature(Boolean value) { this.counterSignature = value; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy