Class DNConstraintsType
- java.lang.Object
-
- org.apache.cxf.configuration.security.DNConstraintsType
-
public class DNConstraintsType extends Object
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 Modifier and Type Field Description protected CombinatorTypecombinatorprotected List<String>regularExpression
-
Constructor Summary
Constructors Constructor Description DNConstraintsType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CombinatorTypegetCombinator()Gets the value of the combinator property.List<String>getRegularExpression()Gets the value of the regularExpression property.booleanisSetCombinator()booleanisSetRegularExpression()voidsetCombinator(CombinatorType value)Sets the value of the combinator property.voidunsetRegularExpression()
-
-
-
Field Detail
-
combinator
protected CombinatorType combinator
-
-
Method Detail
-
getRegularExpression
public List<String> 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 JAXB 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
public void setCombinator(CombinatorType value)
Sets the value of the combinator property.- Parameters:
value- allowed object isCombinatorType
-
isSetCombinator
public boolean isSetCombinator()
-
getCombinator
public CombinatorType getCombinator()
Gets the value of the combinator property.
-
-