All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.cxf.configuration.security.CertificateConstraintsType Maven / Gradle / Ivy

There is a newer version: 4.0.4
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.10-b140310.1920 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2014.12.02 at 09:17:12 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.
 *         
 * 
 * 

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>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CertificateConstraintsType", namespace = "http://cxf.apache.org/configuration/security", propOrder = { "subjectDNConstraints", "issuerDNConstraints" }) public class CertificateConstraintsType { @XmlElement(name = "SubjectDNConstraints", namespace = "http://cxf.apache.org/configuration/security") protected DNConstraintsType subjectDNConstraints; @XmlElement(name = "IssuerDNConstraints", namespace = "http://cxf.apache.org/configuration/security") 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); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy