eu.europa.esig.dss.detailedreport.jaxb.XmlTimestamp Maven / Gradle / Ivy
Show all versions of dss-detailed-report-jaxb Show documentation
//
// 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.ArrayList;
import java.util.List;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for Timestamp complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Timestamp">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="ValidationProcessBasicTimestamp" type="{http://dss.esig.europa.eu/validation/detailed-report}ValidationProcessBasicTimestamp"/>
* <element name="EvidenceRecord" type="{http://dss.esig.europa.eu/validation/detailed-report}EvidenceRecord" maxOccurs="unbounded" minOccurs="0"/>
* <element name="ValidationProcessArchivalDataTimestamp" type="{http://dss.esig.europa.eu/validation/detailed-report}ValidationProcessArchivalDataTimestamp" minOccurs="0"/>
* <element name="ValidationTimestampQualification" type="{http://dss.esig.europa.eu/validation/detailed-report}ValidationTimestampQualification" minOccurs="0"/>
* <element name="Conclusion" type="{http://dss.esig.europa.eu/validation/detailed-report}Conclusion"/>
* </sequence>
* <attribute name="Id" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Timestamp", propOrder = {
"validationProcessBasicTimestamp",
"evidenceRecords",
"validationProcessArchivalDataTimestamp",
"validationTimestampQualification",
"conclusion"
})
public class XmlTimestamp implements Serializable
{
private final static long serialVersionUID = 1L;
@XmlElement(name = "ValidationProcessBasicTimestamp", required = true)
protected XmlValidationProcessBasicTimestamp validationProcessBasicTimestamp;
@XmlElement(name = "EvidenceRecord")
protected List evidenceRecords;
@XmlElement(name = "ValidationProcessArchivalDataTimestamp")
protected XmlValidationProcessArchivalDataTimestamp validationProcessArchivalDataTimestamp;
@XmlElement(name = "ValidationTimestampQualification")
protected XmlValidationTimestampQualification validationTimestampQualification;
@XmlElement(name = "Conclusion", required = true)
protected XmlConclusion conclusion;
@XmlAttribute(name = "Id")
protected String id;
/**
* Gets the value of the validationProcessBasicTimestamp property.
*
* @return
* possible object is
* {@link XmlValidationProcessBasicTimestamp }
*
*/
public XmlValidationProcessBasicTimestamp getValidationProcessBasicTimestamp() {
return validationProcessBasicTimestamp;
}
/**
* Sets the value of the validationProcessBasicTimestamp property.
*
* @param value
* allowed object is
* {@link XmlValidationProcessBasicTimestamp }
*
*/
public void setValidationProcessBasicTimestamp(XmlValidationProcessBasicTimestamp value) {
this.validationProcessBasicTimestamp = value;
}
/**
* Gets the value of the evidenceRecords property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the Jakarta XML Binding object.
* This is why there is not a set
method for the evidenceRecords property.
*
*
* For example, to add a new item, do as follows:
*
* getEvidenceRecords().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link XmlEvidenceRecord }
*
*
*/
public List getEvidenceRecords() {
if (evidenceRecords == null) {
evidenceRecords = new ArrayList();
}
return this.evidenceRecords;
}
/**
* Gets the value of the validationProcessArchivalDataTimestamp property.
*
* @return
* possible object is
* {@link XmlValidationProcessArchivalDataTimestamp }
*
*/
public XmlValidationProcessArchivalDataTimestamp getValidationProcessArchivalDataTimestamp() {
return validationProcessArchivalDataTimestamp;
}
/**
* Sets the value of the validationProcessArchivalDataTimestamp property.
*
* @param value
* allowed object is
* {@link XmlValidationProcessArchivalDataTimestamp }
*
*/
public void setValidationProcessArchivalDataTimestamp(XmlValidationProcessArchivalDataTimestamp value) {
this.validationProcessArchivalDataTimestamp = value;
}
/**
* Gets the value of the validationTimestampQualification property.
*
* @return
* possible object is
* {@link XmlValidationTimestampQualification }
*
*/
public XmlValidationTimestampQualification getValidationTimestampQualification() {
return validationTimestampQualification;
}
/**
* Sets the value of the validationTimestampQualification property.
*
* @param value
* allowed object is
* {@link XmlValidationTimestampQualification }
*
*/
public void setValidationTimestampQualification(XmlValidationTimestampQualification value) {
this.validationTimestampQualification = value;
}
/**
* Gets the value of the conclusion property.
*
* @return
* possible object is
* {@link XmlConclusion }
*
*/
public XmlConclusion getConclusion() {
return conclusion;
}
/**
* Sets the value of the conclusion property.
*
* @param value
* allowed object is
* {@link XmlConclusion }
*
*/
public void setConclusion(XmlConclusion value) {
this.conclusion = value;
}
/**
* 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;
}
}