eu.europa.esig.dss.detailedreport.jaxb.XmlConclusion 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 eu.europa.esig.dss.enumerations.Indication;
import eu.europa.esig.dss.enumerations.SubIndication;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
* Java class for Conclusion complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Conclusion">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Indication" type="{http://dss.esig.europa.eu/validation/detailed-report}Indication"/>
* <element name="SubIndication" type="{http://dss.esig.europa.eu/validation/detailed-report}SubIndication" minOccurs="0"/>
* <element name="Errors" type="{http://dss.esig.europa.eu/validation/detailed-report}Message" maxOccurs="unbounded" minOccurs="0"/>
* <element name="Warnings" type="{http://dss.esig.europa.eu/validation/detailed-report}Message" maxOccurs="unbounded" minOccurs="0"/>
* <element name="Infos" type="{http://dss.esig.europa.eu/validation/detailed-report}Message" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Conclusion", propOrder = {
"indication",
"subIndication",
"errors",
"warnings",
"infos"
})
public class XmlConclusion
implements Serializable
{
private final static long serialVersionUID = 1L;
@XmlElement(name = "Indication", required = true, type = String.class)
@XmlJavaTypeAdapter(Adapter1 .class)
protected Indication indication;
@XmlElement(name = "SubIndication", type = String.class)
@XmlJavaTypeAdapter(Adapter2 .class)
protected SubIndication subIndication;
@XmlElement(name = "Errors")
protected List errors;
@XmlElement(name = "Warnings")
protected List warnings;
@XmlElement(name = "Infos")
protected List infos;
/**
* Gets the value of the indication property.
*
* @return
* possible object is
* {@link String }
*
*/
public Indication getIndication() {
return indication;
}
/**
* Sets the value of the indication property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIndication(Indication value) {
this.indication = value;
}
/**
* Gets the value of the subIndication property.
*
* @return
* possible object is
* {@link String }
*
*/
public SubIndication getSubIndication() {
return subIndication;
}
/**
* Sets the value of the subIndication property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSubIndication(SubIndication value) {
this.subIndication = value;
}
/**
* Gets the value of the errors 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 errors property.
*
*
* For example, to add a new item, do as follows:
*
* getErrors().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link XmlMessage }
*
*
*/
public List getErrors() {
if (errors == null) {
errors = new ArrayList();
}
return this.errors;
}
/**
* Gets the value of the warnings 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 warnings property.
*
*
* For example, to add a new item, do as follows:
*
* getWarnings().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link XmlMessage }
*
*
*/
public List getWarnings() {
if (warnings == null) {
warnings = new ArrayList();
}
return this.warnings;
}
/**
* Gets the value of the infos 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 infos property.
*
*
* For example, to add a new item, do as follows:
*
* getInfos().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link XmlMessage }
*
*
*/
public List getInfos() {
if (infos == null) {
infos = new ArrayList();
}
return this.infos;
}
}