eu.europa.esig.dss.detailedreport.jaxb.XmlISC 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.XmlType;
/**
* Java class for ISC complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ISC">
* <complexContent>
* <extension base="{http://dss.esig.europa.eu/validation/detailed-report}ConstraintsConclusion">
* <sequence>
* <element name="CertificateChain" type="{http://dss.esig.europa.eu/validation/detailed-report}CertificateChain"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ISC", propOrder = {
"certificateChain"
})
public class XmlISC
extends XmlConstraintsConclusion
implements Serializable
{
private final static long serialVersionUID = 1L;
@XmlElement(name = "CertificateChain", required = true)
protected XmlCertificateChain certificateChain;
/**
* Gets the value of the certificateChain property.
*
* @return
* possible object is
* {@link XmlCertificateChain }
*
*/
public XmlCertificateChain getCertificateChain() {
return certificateChain;
}
/**
* Sets the value of the certificateChain property.
*
* @param value
* allowed object is
* {@link XmlCertificateChain }
*
*/
public void setCertificateChain(XmlCertificateChain value) {
this.certificateChain = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy