Class XmlFoundCertificates
- java.lang.Object
-
- eu.europa.esig.dss.diagnostic.jaxb.XmlFoundCertificates
-
- All Implemented Interfaces:
Serializable
public class XmlFoundCertificates extends Object implements Serializable
Java class for anonymous complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="RelatedCertificate" type="{http://dss.esig.europa.eu/validation/diagnostic}RelatedCertificate" maxOccurs="unbounded" minOccurs="0"/> <element name="OrphanCertificate" type="{http://dss.esig.europa.eu/validation/diagnostic}OrphanCertificate" maxOccurs="unbounded" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected List<XmlOrphanCertificate>orphanCertificatesprotected List<XmlRelatedCertificate>relatedCertificates
-
Constructor Summary
Constructors Constructor Description XmlFoundCertificates()
-
Method Summary
Modifier and Type Method Description List<XmlOrphanCertificate>getOrphanCertificates()Gets the value of the orphanCertificates property.List<XmlRelatedCertificate>getRelatedCertificates()Gets the value of the relatedCertificates property.
-
-
-
Field Detail
-
relatedCertificates
protected List<XmlRelatedCertificate> relatedCertificates
-
orphanCertificates
protected List<XmlOrphanCertificate> orphanCertificates
-
-
Method Detail
-
getRelatedCertificates
public List<XmlRelatedCertificate> getRelatedCertificates()
Gets the value of the relatedCertificates 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 relatedCertificates property.For example, to add a new item, do as follows:
getRelatedCertificates().add(newItem);Objects of the following type(s) are allowed in the list
XmlRelatedCertificate
-
getOrphanCertificates
public List<XmlOrphanCertificate> getOrphanCertificates()
Gets the value of the orphanCertificates 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 orphanCertificates property.For example, to add a new item, do as follows:
getOrphanCertificates().add(newItem);Objects of the following type(s) are allowed in the list
XmlOrphanCertificate
-
-