Class DNConstraintsType
java.lang.Object
org.apache.cxf.configuration.security.DNConstraintsType
This structure holds a list of regular expressions that corresponds to a sequence of
Certificate Constraints. The optional combinator attribute refers to whether ALL or
ANY of these regular expressions must be satisfied.
Java class for DNConstraintsType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="DNConstraintsType">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<choice>
<element name="RegularExpression" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
</choice>
</sequence>
<attribute name="combinator" type="{http://cxf.apache.org/configuration/security}CombinatorType" default="ALL" />
</restriction>
</complexContent>
</complexType>
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionGets the value of the combinator property.Gets the value of the regularExpression property.booleanbooleanvoidsetCombinator(CombinatorType value) Sets the value of the combinator property.void
-
Field Details
-
regularExpression
-
combinator
-
-
Constructor Details
-
DNConstraintsType
public DNConstraintsType()
-
-
Method Details
-
getRegularExpression
Gets the value of the regularExpression 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 regularExpression property.For example, to add a new item, do as follows:
getRegularExpression().add(newItem);Objects of the following type(s) are allowed in the list
String -
isSetRegularExpression
public boolean isSetRegularExpression() -
unsetRegularExpression
public void unsetRegularExpression() -
setCombinator
Sets the value of the combinator property.- Parameters:
value- allowed object isCombinatorType
-
isSetCombinator
public boolean isSetCombinator() -
getCombinator
Gets the value of the combinator property.
-