eu.europa.esig.dss.detailedreport.jaxb.XmlProofOfExistence 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, v2.3.8
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2023.11.03 at 04:25:51 PM CET
//
package eu.europa.esig.dss.detailedreport.jaxb;
import java.io.Serializable;
import java.util.Date;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
* Java class for ProofOfExistence complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ProofOfExistence">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Time" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
* <element name="TimestampId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ProofOfExistence", propOrder = {
"time",
"timestampId"
})
public class XmlProofOfExistence
implements Serializable
{
private static final long serialVersionUID = 1L;
@XmlElement(name = "Time", required = true, type = String.class)
@XmlJavaTypeAdapter(Adapter1 .class)
@XmlSchemaType(name = "dateTime")
protected Date time;
@XmlElement(name = "TimestampId")
protected String timestampId;
/**
* Gets the value of the time property.
*
* @return
* possible object is
* {@link String }
*
*/
public Date getTime() {
return time;
}
/**
* Sets the value of the time property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTime(Date value) {
this.time = value;
}
/**
* Gets the value of the timestampId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTimestampId() {
return timestampId;
}
/**
* Sets the value of the timestampId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTimestampId(String value) {
this.timestampId = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy