Class CertificateConstraintsType
- java.lang.Object
-
- org.apache.cxf.configuration.security.CertificateConstraintsType
-
public class CertificateConstraintsType extends Object
This structure holds a list of regular expressions that corresponds to a sequence of Certificate Constraints on either the Subject or Issuer DN.Java class for CertificateConstraintsType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="CertificateConstraintsType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="SubjectDNConstraints" type="{http://cxf.apache.org/configuration/security}DNConstraintsType" minOccurs="0"/> <element name="IssuerDNConstraints" type="{http://cxf.apache.org/configuration/security}DNConstraintsType" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected DNConstraintsTypeissuerDNConstraintsprotected DNConstraintsTypesubjectDNConstraints
-
Constructor Summary
Constructors Constructor Description CertificateConstraintsType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DNConstraintsTypegetIssuerDNConstraints()Gets the value of the issuerDNConstraints property.DNConstraintsTypegetSubjectDNConstraints()Gets the value of the subjectDNConstraints property.booleanisSetIssuerDNConstraints()booleanisSetSubjectDNConstraints()voidsetIssuerDNConstraints(DNConstraintsType value)Sets the value of the issuerDNConstraints property.voidsetSubjectDNConstraints(DNConstraintsType value)Sets the value of the subjectDNConstraints property.
-
-
-
Field Detail
-
subjectDNConstraints
protected DNConstraintsType subjectDNConstraints
-
issuerDNConstraints
protected DNConstraintsType issuerDNConstraints
-
-
Method Detail
-
getSubjectDNConstraints
public DNConstraintsType getSubjectDNConstraints()
Gets the value of the subjectDNConstraints property.- Returns:
- possible object is
DNConstraintsType
-
setSubjectDNConstraints
public void setSubjectDNConstraints(DNConstraintsType value)
Sets the value of the subjectDNConstraints property.- Parameters:
value- allowed object isDNConstraintsType
-
isSetSubjectDNConstraints
public boolean isSetSubjectDNConstraints()
-
getIssuerDNConstraints
public DNConstraintsType getIssuerDNConstraints()
Gets the value of the issuerDNConstraints property.- Returns:
- possible object is
DNConstraintsType
-
setIssuerDNConstraints
public void setIssuerDNConstraints(DNConstraintsType value)
Sets the value of the issuerDNConstraints property.- Parameters:
value- allowed object isDNConstraintsType
-
isSetIssuerDNConstraints
public boolean isSetIssuerDNConstraints()
-
-