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

eu.europa.esig.dss.detailedreport.jaxb.XmlValidationCertificateQualification 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, 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 java.util.Date;
import eu.europa.esig.dss.enumerations.CertificateQualification;
import eu.europa.esig.dss.enumerations.ValidationTime;
import eu.europa.esig.dss.jaxb.parsers.DateParser;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;


/**
 * 

Java class for ValidationCertificateQualification complex type. * *

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

 * <complexType name="ValidationCertificateQualification">
 *   <complexContent>
 *     <extension base="{http://dss.esig.europa.eu/validation/detailed-report}ConstraintsConclusion">
 *       <attribute name="Id" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="DateTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
 *       <attribute name="ValidationTime" type="{http://dss.esig.europa.eu/validation/detailed-report}ValidationTime" />
 *       <attribute name="CertificateQualification" type="{http://dss.esig.europa.eu/validation/detailed-report}CertificateQualification" />
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ValidationCertificateQualification") public class XmlValidationCertificateQualification extends XmlConstraintsConclusion implements Serializable { private final static long serialVersionUID = 1L; @XmlAttribute(name = "Id", required = true) protected String id; @XmlAttribute(name = "DateTime") @XmlJavaTypeAdapter(DateParser.class) @XmlSchemaType(name = "dateTime") protected Date dateTime; @XmlAttribute(name = "ValidationTime") @XmlJavaTypeAdapter(Adapter7 .class) protected ValidationTime validationTime; @XmlAttribute(name = "CertificateQualification") @XmlJavaTypeAdapter(Adapter3 .class) protected CertificateQualification certificateQualification; /** * 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 dateTime property. * * @return * possible object is * {@link String } * */ public Date getDateTime() { return dateTime; } /** * Sets the value of the dateTime property. * * @param value * allowed object is * {@link String } * */ public void setDateTime(Date value) { this.dateTime = value; } /** * Gets the value of the validationTime property. * * @return * possible object is * {@link String } * */ public ValidationTime getValidationTime() { return validationTime; } /** * Sets the value of the validationTime property. * * @param value * allowed object is * {@link String } * */ public void setValidationTime(ValidationTime value) { this.validationTime = value; } /** * Gets the value of the certificateQualification property. * * @return * possible object is * {@link String } * */ public CertificateQualification getCertificateQualification() { return certificateQualification; } /** * Sets the value of the certificateQualification property. * * @param value * allowed object is * {@link String } * */ public void setCertificateQualification(CertificateQualification value) { this.certificateQualification = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy