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