Class XmlFoundCertificates
- All Implemented Interfaces:
 Serializable
Java class for FoundCertificates complex type.
The following schema fragment specifies the expected content contained within this class.
 <complexType name="FoundCertificates">
   <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:
 
- 
Field Summary
FieldsModifier and TypeFieldDescriptionprotected List<XmlOrphanCertificate> protected List<XmlRelatedCertificate>  - 
Constructor Summary
Constructors - 
Method Summary
Modifier and TypeMethodDescriptionGets the value of the orphanCertificates property.Gets the value of the relatedCertificates property. 
- 
Field Details
- 
orphanCertificates
 
 - 
Constructor Details
- 
XmlFoundCertificates
public XmlFoundCertificates() 
 - 
 - 
Method Details
- 
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 Jakarta XML Binding 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
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 Jakarta XML Binding 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 
 -