Class XmlNameConstraints
- All Implemented Interfaces:
Serializable
Java class for NameConstraints complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="NameConstraints"> <complexContent> <extension base="{http://dss.esig.europa.eu/validation/diagnostic}CertificateExtension"> <sequence> <element name="PermittedSubtree" type="{http://dss.esig.europa.eu/validation/diagnostic}GeneralSubtree" maxOccurs="unbounded" minOccurs="0"/> <element name="ExcludedSubtree" type="{http://dss.esig.europa.eu/validation/diagnostic}GeneralSubtree" maxOccurs="unbounded" minOccurs="0"/> </sequence> </extension> </complexContent> </complexType>
- See Also:
-
Field Summary
Modifier and TypeFieldDescriptionprotected List<XmlGeneralSubtree>
protected List<XmlGeneralSubtree>
Fields inherited from class eu.europa.esig.dss.diagnostic.jaxb.XmlCertificateExtension
critical, description, octets, oid
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionGets the value of the excludedSubtrees property.Gets the value of the permittedSubtrees property.Methods inherited from class eu.europa.esig.dss.diagnostic.jaxb.XmlCertificateExtension
getDescription, getOctets, getOID, isCritical, setCritical, setDescription, setOctets, setOID
-
Field Details
-
permittedSubtrees
-
excludedSubtrees
-
-
Constructor Details
-
XmlNameConstraints
public XmlNameConstraints()
-
-
Method Details
-
getPermittedSubtrees
Gets the value of the permittedSubtrees 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 permittedSubtrees property.For example, to add a new item, do as follows:
getPermittedSubtrees().add(newItem);
Objects of the following type(s) are allowed in the list
XmlGeneralSubtree
-
getExcludedSubtrees
Gets the value of the excludedSubtrees 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 excludedSubtrees property.For example, to add a new item, do as follows:
getExcludedSubtrees().add(newItem);
Objects of the following type(s) are allowed in the list
XmlGeneralSubtree
-