Class XmlSubXCV
- All Implemented Interfaces:
Serializable
public class XmlSubXCV extends XmlConstraintsConclusion implements Serializable
Java class for SubXCV complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="SubXCV"> <complexContent> <extension base="{http://dss.esig.europa.eu/validation/detailed-report}ConstraintsConclusion"> <sequence> <element name="CrossCertificate" minOccurs="0"> <simpleType> <list itemType="{http://www.w3.org/2001/XMLSchema}string" /> </simpleType> </element> <element name="EquivalentCertificate" minOccurs="0"> <simpleType> <list itemType="{http://www.w3.org/2001/XMLSchema}string" /> </simpleType> </element> <element name="RAC" type="{http://dss.esig.europa.eu/validation/detailed-report}RAC" maxOccurs="unbounded" minOccurs="0"/> <element name="RFC" type="{http://dss.esig.europa.eu/validation/detailed-report}RFC" minOccurs="0"/> <element name="RevocationInfo" type="{http://dss.esig.europa.eu/validation/detailed-report}RevocationInformation" minOccurs="0"/> </sequence> <attribute name="Id" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="TrustAnchor" type="{http://www.w3.org/2001/XMLSchema}boolean" /> <attribute name="SelfSigned" type="{http://www.w3.org/2001/XMLSchema}boolean" /> </extension> </complexContent> </complexType>
- See Also:
- Serialized Form
-
Field Summary
Fields Modifier and Type Field Description protected List<String>
crossCertificates
protected List<String>
equivalentCertificates
protected String
id
protected List<XmlRAC>
rac
protected XmlRevocationInformation
revocationInfo
protected XmlRFC
rfc
protected Boolean
selfSigned
protected Boolean
trustAnchor
Fields inherited from class eu.europa.esig.dss.detailedreport.jaxb.XmlConstraintsConclusion
conclusion, constraint, title
-
Constructor Summary
Constructors Constructor Description XmlSubXCV()
-
Method Summary
Modifier and Type Method Description List<String>
getCrossCertificates()
Gets the value of the crossCertificates property.List<String>
getEquivalentCertificates()
Gets the value of the equivalentCertificates property.String
getId()
Gets the value of the id property.List<XmlRAC>
getRAC()
Gets the value of the rac property.XmlRevocationInformation
getRevocationInfo()
Gets the value of the revocationInfo property.XmlRFC
getRFC()
Gets the value of the rfc property.Boolean
isSelfSigned()
Gets the value of the selfSigned property.Boolean
isTrustAnchor()
Gets the value of the trustAnchor property.void
setId(String value)
Sets the value of the id property.void
setRevocationInfo(XmlRevocationInformation value)
Sets the value of the revocationInfo property.void
setRFC(XmlRFC value)
Sets the value of the rfc property.void
setSelfSigned(Boolean value)
Sets the value of the selfSigned property.void
setTrustAnchor(Boolean value)
Sets the value of the trustAnchor property.Methods inherited from class eu.europa.esig.dss.detailedreport.jaxb.XmlConstraintsConclusion
getConclusion, getConstraint, getTitle, setConclusion, setTitle
-
Field Details
-
Constructor Details
-
XmlSubXCV
public XmlSubXCV()
-
-
Method Details
-
getCrossCertificates
Gets the value of the crossCertificates 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 crossCertificates property.For example, to add a new item, do as follows:
getCrossCertificates().add(newItem);
Objects of the following type(s) are allowed in the list
String
-
getEquivalentCertificates
Gets the value of the equivalentCertificates 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 equivalentCertificates property.For example, to add a new item, do as follows:
getEquivalentCertificates().add(newItem);
Objects of the following type(s) are allowed in the list
String
-
getRAC
Gets the value of the rac 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 rac property.For example, to add a new item, do as follows:
getRAC().add(newItem);
Objects of the following type(s) are allowed in the list
XmlRAC
-
getRFC
Gets the value of the rfc property.- Returns:
- possible object is
XmlRFC
-
setRFC
Sets the value of the rfc property.- Parameters:
value
- allowed object isXmlRFC
-
getRevocationInfo
Gets the value of the revocationInfo property.- Returns:
- possible object is
XmlRevocationInformation
-
setRevocationInfo
Sets the value of the revocationInfo property.- Parameters:
value
- allowed object isXmlRevocationInformation
-
getId
Gets the value of the id property.- Returns:
- possible object is
String
-
setId
Sets the value of the id property.- Parameters:
value
- allowed object isString
-
isTrustAnchor
Gets the value of the trustAnchor property.- Returns:
- possible object is
Boolean
-
setTrustAnchor
Sets the value of the trustAnchor property.- Parameters:
value
- allowed object isBoolean
-
isSelfSigned
Gets the value of the selfSigned property.- Returns:
- possible object is
Boolean
-
setSelfSigned
Sets the value of the selfSigned property.- Parameters:
value
- allowed object isBoolean
-