
eu.europa.esig.dss.simplecertificatereport.jaxb.XmlDetails Maven / Gradle / Ivy
//
// 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:25 PM CET
//
package eu.europa.esig.dss.simplecertificatereport.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.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for Details complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Details">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Error" type="{http://dss.esig.europa.eu/validation/simple-certificate-report}Message" maxOccurs="unbounded" minOccurs="0"/>
* <element name="Warning" type="{http://dss.esig.europa.eu/validation/simple-certificate-report}Message" maxOccurs="unbounded" minOccurs="0"/>
* <element name="Info" type="{http://dss.esig.europa.eu/validation/simple-certificate-report}Message" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Details", propOrder = {
"error",
"warning",
"info"
})
public class XmlDetails implements Serializable
{
private final static long serialVersionUID = 1L;
@XmlElement(name = "Error")
protected List error;
@XmlElement(name = "Warning")
protected List warning;
@XmlElement(name = "Info")
protected List info;
/**
* Gets the value of the error 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 error property.
*
*
* For example, to add a new item, do as follows:
*
* getError().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link XmlMessage }
*
*
*/
public List getError() {
if (error == null) {
error = new ArrayList();
}
return this.error;
}
/**
* Gets the value of the warning 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 warning property.
*
*
* For example, to add a new item, do as follows:
*
* getWarning().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link XmlMessage }
*
*
*/
public List getWarning() {
if (warning == null) {
warning = new ArrayList();
}
return this.warning;
}
/**
* Gets the value of the info 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 info property.
*
*
* For example, to add a new item, do as follows:
*
* getInfo().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link XmlMessage }
*
*
*/
public List getInfo() {
if (info == null) {
info = new ArrayList();
}
return this.info;
}
}