Class XmlDetailedReport
- java.lang.Object
-
- eu.europa.esig.dss.detailedreport.jaxb.XmlDetailedReport
-
- All Implemented Interfaces:
Serializable
public class XmlDetailedReport extends Object implements Serializable
Java class for DetailedReport complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="DetailedReport"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <choice> <element name="Signatures" type="{http://dss.esig.europa.eu/validation/detailed-report}Signature" maxOccurs="unbounded" minOccurs="0"/> <element name="Certificate" type="{http://dss.esig.europa.eu/validation/detailed-report}Certificate" minOccurs="0"/> </choice> <element name="BasicBuildingBlocks" type="{http://dss.esig.europa.eu/validation/detailed-report}BasicBuildingBlocks" maxOccurs="unbounded" minOccurs="0"/> <element name="TLAnalysis" type="{http://dss.esig.europa.eu/validation/detailed-report}TLAnalysis" maxOccurs="unbounded" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected List<XmlBasicBuildingBlocks>basicBuildingBlocksprotected XmlCertificatecertificateprotected List<XmlSignature>signaturesprotected List<XmlTLAnalysis>tlAnalysis
-
Constructor Summary
Constructors Constructor Description XmlDetailedReport()
-
Method Summary
Modifier and Type Method Description List<XmlBasicBuildingBlocks>getBasicBuildingBlocks()Gets the value of the basicBuildingBlocks property.XmlCertificategetCertificate()Gets the value of the certificate property.List<XmlSignature>getSignatures()Gets the value of the signatures property.List<XmlTLAnalysis>getTLAnalysis()Gets the value of the tlAnalysis property.voidsetCertificate(XmlCertificate value)Sets the value of the certificate property.
-
-
-
Field Detail
-
signatures
protected List<XmlSignature> signatures
-
certificate
protected XmlCertificate certificate
-
basicBuildingBlocks
protected List<XmlBasicBuildingBlocks> basicBuildingBlocks
-
tlAnalysis
protected List<XmlTLAnalysis> tlAnalysis
-
-
Method Detail
-
getSignatures
public List<XmlSignature> getSignatures()
Gets the value of the signatures 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 signatures property.For example, to add a new item, do as follows:
getSignatures().add(newItem);Objects of the following type(s) are allowed in the list
XmlSignature
-
getCertificate
public XmlCertificate getCertificate()
Gets the value of the certificate property.- Returns:
- possible object is
XmlCertificate
-
setCertificate
public void setCertificate(XmlCertificate value)
Sets the value of the certificate property.- Parameters:
value- allowed object isXmlCertificate
-
getBasicBuildingBlocks
public List<XmlBasicBuildingBlocks> getBasicBuildingBlocks()
Gets the value of the basicBuildingBlocks 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 basicBuildingBlocks property.For example, to add a new item, do as follows:
getBasicBuildingBlocks().add(newItem);Objects of the following type(s) are allowed in the list
XmlBasicBuildingBlocks
-
getTLAnalysis
public List<XmlTLAnalysis> getTLAnalysis()
Gets the value of the tlAnalysis 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 tlAnalysis property.For example, to add a new item, do as follows:
getTLAnalysis().add(newItem);Objects of the following type(s) are allowed in the list
XmlTLAnalysis
-
-