eu.europa.esig.dss.detailedreport.jaxb.XmlConstraintsConclusionWithProofOfExistence Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dss-detailed-report-jaxb Show documentation
Show all versions of dss-detailed-report-jaxb Show documentation
Generated source from XSD for Detailed Report and additional XSLT (for HTML/PDF renderings).
//
// 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.12.24 at 03:19:12 PM CET
//
package eu.europa.esig.dss.detailedreport.jaxb;
import java.io.Serializable;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSeeAlso;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for ConstraintsConclusionWithProofOfExistence complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ConstraintsConclusionWithProofOfExistence">
* <complexContent>
* <extension base="{http://dss.esig.europa.eu/validation/detailed-report}ConstraintsConclusion">
* <sequence>
* <element name="ProofOfExistence" type="{http://dss.esig.europa.eu/validation/detailed-report}ProofOfExistence" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ConstraintsConclusionWithProofOfExistence", propOrder = {
"proofOfExistence"
})
@XmlSeeAlso({
XmlValidationProcessBasicSignature.class,
XmlValidationProcessArchivalDataTimestamp.class,
XmlValidationProcessEvidenceRecord.class,
XmlValidationProcessLongTermData.class,
XmlValidationProcessArchivalData.class
})
public class XmlConstraintsConclusionWithProofOfExistence
extends XmlConstraintsConclusion
implements Serializable
{
private final static long serialVersionUID = 1L;
@XmlElement(name = "ProofOfExistence")
protected XmlProofOfExistence proofOfExistence;
/**
* Gets the value of the proofOfExistence property.
*
* @return
* possible object is
* {@link XmlProofOfExistence }
*
*/
public XmlProofOfExistence getProofOfExistence() {
return proofOfExistence;
}
/**
* Sets the value of the proofOfExistence property.
*
* @param value
* allowed object is
* {@link XmlProofOfExistence }
*
*/
public void setProofOfExistence(XmlProofOfExistence value) {
this.proofOfExistence = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy