Class XmlConclusion
- java.lang.Object
-
- eu.europa.esig.dss.detailedreport.jaxb.XmlConclusion
-
- All Implemented Interfaces:
Serializable
public class XmlConclusion extends Object implements Serializable
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}Name" maxOccurs="unbounded" minOccurs="0"/> <element name="Warnings" type="{http://dss.esig.europa.eu/validation/detailed-report}Name" maxOccurs="unbounded" minOccurs="0"/> <element name="Infos" type="{http://dss.esig.europa.eu/validation/detailed-report}Name" maxOccurs="unbounded" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected List<XmlName>errorsprotected Indicationindicationprotected List<XmlName>infosprotected SubIndicationsubIndicationprotected List<XmlName>warnings
-
Constructor Summary
Constructors Constructor Description XmlConclusion()
-
Method Summary
Modifier and Type Method Description List<XmlName>getErrors()Gets the value of the errors property.IndicationgetIndication()Gets the value of the indication property.List<XmlName>getInfos()Gets the value of the infos property.SubIndicationgetSubIndication()Gets the value of the subIndication property.List<XmlName>getWarnings()Gets the value of the warnings property.voidsetIndication(Indication value)Sets the value of the indication property.voidsetSubIndication(SubIndication value)Sets the value of the subIndication property.
-
-
-
Field Detail
-
indication
protected Indication indication
-
subIndication
protected SubIndication subIndication
-
-
Method Detail
-
getIndication
public Indication getIndication()
Gets the value of the indication property.- Returns:
- possible object is
String
-
setIndication
public void setIndication(Indication value)
Sets the value of the indication property.- Parameters:
value- allowed object isString
-
getSubIndication
public SubIndication getSubIndication()
Gets the value of the subIndication property.- Returns:
- possible object is
String
-
setSubIndication
public void setSubIndication(SubIndication value)
Sets the value of the subIndication property.- Parameters:
value- allowed object isString
-
getErrors
public List<XmlName> getErrors()
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 JAXB object. This is why there is not a
setmethod 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
XmlName
-
getWarnings
public List<XmlName> getWarnings()
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 JAXB object. This is why there is not a
setmethod 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
XmlName
-
getInfos
public List<XmlName> getInfos()
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 JAXB object. This is why there is not a
setmethod 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
XmlName
-
-