eu.europa.esig.dss.detailedreport.jaxb.XmlValidationTimestampQualification Maven / Gradle / Ivy
Show all versions of dss-detailed-report-jaxb Show documentation
//
// 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.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import eu.europa.esig.dss.enumerations.TimestampQualification;
/**
* Java class for ValidationTimestampQualification complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ValidationTimestampQualification">
* <complexContent>
* <extension base="{http://dss.esig.europa.eu/validation/detailed-report}ConstraintsConclusion">
* <sequence>
* <element name="ValidationTimestampQualificationAtTime" type="{http://dss.esig.europa.eu/validation/detailed-report}ValidationTimestampQualificationAtTime" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* <attribute name="TimestampQualification" use="required" type="{http://dss.esig.europa.eu/validation/detailed-report}TimestampQualification" />
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ValidationTimestampQualification", propOrder = {
"validationTimestampQualificationAtTime"
})
public class XmlValidationTimestampQualification
extends XmlConstraintsConclusion
implements Serializable
{
private static final long serialVersionUID = 1L;
@XmlElement(name = "ValidationTimestampQualificationAtTime")
protected List validationTimestampQualificationAtTime;
@XmlAttribute(name = "TimestampQualification", required = true)
@XmlJavaTypeAdapter(Adapter6 .class)
protected TimestampQualification timestampQualification;
/**
* Gets the value of the validationTimestampQualificationAtTime 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 JAXB object.
* This is why there is not a set
method for the validationTimestampQualificationAtTime property.
*
*
* For example, to add a new item, do as follows:
*
* getValidationTimestampQualificationAtTime().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link XmlValidationTimestampQualificationAtTime }
*
*
*/
public List getValidationTimestampQualificationAtTime() {
if (validationTimestampQualificationAtTime == null) {
validationTimestampQualificationAtTime = new ArrayList();
}
return this.validationTimestampQualificationAtTime;
}
/**
* Gets the value of the timestampQualification property.
*
* @return
* possible object is
* {@link String }
*
*/
public TimestampQualification getTimestampQualification() {
return timestampQualification;
}
/**
* Sets the value of the timestampQualification property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTimestampQualification(TimestampQualification value) {
this.timestampQualification = value;
}
}