//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2012.01.19 at 02:13:18 PM EST
//
package org.apache.cxf.configuration.security;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
*
* This structure holds a list of regular expressions that corresponds to a sequence of
* Certificate Constraints on either the Subject or Issuer DN.
*
*
* <p>Java class for CertificateConstraintsType complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <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>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CertificateConstraintsType", propOrder = {
"subjectDNConstraints",
"issuerDNConstraints"
})
public class CertificateConstraintsType {
@XmlElement(name = "SubjectDNConstraints")
protected DNConstraintsType subjectDNConstraints;
@XmlElement(name = "IssuerDNConstraints")
protected DNConstraintsType issuerDNConstraints;
/**
* Gets the value of the subjectDNConstraints property.
*
* @return
* possible object is
* {@link DNConstraintsType }
*
*/
public DNConstraintsType getSubjectDNConstraints() {
return subjectDNConstraints;
}
/**
* Sets the value of the subjectDNConstraints property.
*
* @param value
* allowed object is
* {@link DNConstraintsType }
*
*/
public void setSubjectDNConstraints(DNConstraintsType value) {
this.subjectDNConstraints = value;
}
public boolean isSetSubjectDNConstraints() {
return (this.subjectDNConstraints!= null);
}
/**
* Gets the value of the issuerDNConstraints property.
*
* @return
* possible object is
* {@link DNConstraintsType }
*
*/
public DNConstraintsType getIssuerDNConstraints() {
return issuerDNConstraints;
}
/**
* Sets the value of the issuerDNConstraints property.
*
* @param value
* allowed object is
* {@link DNConstraintsType }
*
*/
public void setIssuerDNConstraints(DNConstraintsType value) {
this.issuerDNConstraints = value;
}
public boolean isSetIssuerDNConstraints() {
return (this.issuerDNConstraints!= null);
}
}
|