eu.europa.esig.dss.detailedreport.jaxb.XmlConstraintsConclusionWithControlTime 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 java.util.Date;
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.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlSeeAlso;
import jakarta.xml.bind.annotation.XmlType;
import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
* Java class for ConstraintsConclusionWithControlTime complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ConstraintsConclusionWithControlTime">
* <complexContent>
* <extension base="{http://dss.esig.europa.eu/validation/detailed-report}ConstraintsConclusion">
* <sequence>
* <element name="ControlTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ConstraintsConclusionWithControlTime", propOrder = {
"controlTime"
})
@XmlSeeAlso({
XmlVTS.class,
XmlPCV.class,
XmlPSV.class
})
public class XmlConstraintsConclusionWithControlTime
extends XmlConstraintsConclusion
implements Serializable
{
private final static long serialVersionUID = 1L;
@XmlElement(name = "ControlTime", type = String.class)
@XmlJavaTypeAdapter(DateParser.class)
@XmlSchemaType(name = "dateTime")
protected Date controlTime;
/**
* Gets the value of the controlTime property.
*
* @return
* possible object is
* {@link String }
*
*/
public Date getControlTime() {
return controlTime;
}
/**
* Sets the value of the controlTime property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setControlTime(Date value) {
this.controlTime = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy