Class 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>
<sequence maxOccurs="unbounded" minOccurs="0">
<choice>
<element name="Signature" type="{http://dss.esig.europa.eu/validation/detailed-report}Signature"/>
<element name="Timestamp" type="{http://dss.esig.europa.eu/validation/detailed-report}Timestamp"/>
<element name="Certificate" type="{http://dss.esig.europa.eu/validation/detailed-report}Certificate"/>
</choice>
</sequence>
<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>
<attribute name="ValidationTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
</restriction>
</complexContent>
</complexType>
- See Also:
- Serialized Form
-
Field Summary
Fields Modifier and Type Field Description protected List<XmlBasicBuildingBlocks>basicBuildingBlocksprotected List<Serializable>signatureOrTimestampOrCertificateprotected List<XmlTLAnalysis>tlAnalysisprotected DatevalidationTime -
Constructor Summary
Constructors Constructor Description XmlDetailedReport() -
Method Summary
Modifier and Type Method Description List<XmlBasicBuildingBlocks>getBasicBuildingBlocks()Gets the value of the basicBuildingBlocks property.List<Serializable>getSignatureOrTimestampOrCertificate()Gets the value of the signatureOrTimestampOrCertificate property.List<XmlTLAnalysis>getTLAnalysis()Gets the value of the tlAnalysis property.DategetValidationTime()Gets the value of the validationTime property.voidsetValidationTime(Date value)Sets the value of the validationTime property.
-
Field Details
-
Constructor Details
-
XmlDetailedReport
public XmlDetailedReport()
-
-
Method Details
-
getSignatureOrTimestampOrCertificate
Gets the value of the signatureOrTimestampOrCertificate 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 signatureOrTimestampOrCertificate property.For example, to add a new item, do as follows:
getSignatureOrTimestampOrCertificate().add(newItem);Objects of the following type(s) are allowed in the list
XmlSignatureXmlTimestampXmlCertificate -
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
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 -
getValidationTime
Gets the value of the validationTime property.- Returns:
- possible object is
String
-
setValidationTime
Sets the value of the validationTime property.- Parameters:
value- allowed object isString
-