eu.europa.esig.dss.detailedreport.jaxb.XmlValidationProcessBasicTimestamp 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.XmlAttribute;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
* Java class for ValidationProcessBasicTimestamp complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ValidationProcessBasicTimestamp">
* <complexContent>
* <extension base="{http://dss.esig.europa.eu/validation/detailed-report}ConstraintsConclusion">
* <attribute name="Type" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="ProductionTime" use="required" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ValidationProcessBasicTimestamp")
public class XmlValidationProcessBasicTimestamp
extends XmlConstraintsConclusion
implements Serializable
{
private final static long serialVersionUID = 1L;
@XmlAttribute(name = "Type", required = true)
protected String type;
@XmlAttribute(name = "ProductionTime", required = true)
@XmlJavaTypeAdapter(DateParser.class)
@XmlSchemaType(name = "dateTime")
protected Date productionTime;
/**
* Gets the value of the type property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getType() {
return type;
}
/**
* Sets the value of the type property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setType(String value) {
this.type = value;
}
/**
* Gets the value of the productionTime property.
*
* @return
* possible object is
* {@link String }
*
*/
public Date getProductionTime() {
return productionTime;
}
/**
* Sets the value of the productionTime property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setProductionTime(Date value) {
this.productionTime = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy