Class CertificateChainType
java.lang.Object
eu.europa.esig.validationreport.jaxb.CertificateChainType
- All Implemented Interfaces:
Serializable
public class CertificateChainType extends Object implements Serializable
Java class for CertificateChainType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="CertificateChainType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="SigningCertificate" type="{http://uri.etsi.org/19102/v1.2.1#}VOReferenceType"/> <element name="IntermediateCertificate" type="{http://uri.etsi.org/19102/v1.2.1#}VOReferenceType" maxOccurs="unbounded" minOccurs="0"/> <element name="TrustAnchor" type="{http://uri.etsi.org/19102/v1.2.1#}VOReferenceType" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
- See Also:
- Serialized Form
-
Field Summary
Fields Modifier and Type Field Description protected List<VOReferenceType>
intermediateCertificate
protected VOReferenceType
signingCertificate
protected VOReferenceType
trustAnchor
-
Constructor Summary
Constructors Constructor Description CertificateChainType()
-
Method Summary
Modifier and Type Method Description List<VOReferenceType>
getIntermediateCertificate()
Gets the value of the intermediateCertificate property.VOReferenceType
getSigningCertificate()
Gets the value of the signingCertificate property.VOReferenceType
getTrustAnchor()
Gets the value of the trustAnchor property.void
setSigningCertificate(VOReferenceType value)
Sets the value of the signingCertificate property.void
setTrustAnchor(VOReferenceType value)
Sets the value of the trustAnchor property.
-
Field Details
-
Constructor Details
-
CertificateChainType
public CertificateChainType()
-
-
Method Details
-
getSigningCertificate
Gets the value of the signingCertificate property.- Returns:
- possible object is
VOReferenceType
-
setSigningCertificate
Sets the value of the signingCertificate property.- Parameters:
value
- allowed object isVOReferenceType
-
getIntermediateCertificate
Gets the value of the intermediateCertificate 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
set
method for the intermediateCertificate property.For example, to add a new item, do as follows:
getIntermediateCertificate().add(newItem);
Objects of the following type(s) are allowed in the list
VOReferenceType
-
getTrustAnchor
Gets the value of the trustAnchor property.- Returns:
- possible object is
VOReferenceType
-
setTrustAnchor
Sets the value of the trustAnchor property.- Parameters:
value
- allowed object isVOReferenceType
-