org.xipki.ca.certprofile.x509.jaxb.NameConstraints Maven / Gradle / Ivy
The newest version!
package org.xipki.ca.certprofile.x509.jaxb;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="permittedSubtrees" type="{http://xipki.org/ca/xmlprofile/v2}generalSubtreesType" minOccurs="0"/>
* <element name="excludedSubtrees" type="{http://xipki.org/ca/xmlprofile/v2}generalSubtreesType" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"permittedSubtrees",
"excludedSubtrees"
})
@XmlRootElement(name = "nameConstraints")
public class NameConstraints {
protected GeneralSubtreesType permittedSubtrees;
protected GeneralSubtreesType excludedSubtrees;
/**
* Gets the value of the permittedSubtrees property.
*
* @return
* possible object is
* {@link GeneralSubtreesType }
*
*/
public GeneralSubtreesType getPermittedSubtrees() {
return permittedSubtrees;
}
/**
* Sets the value of the permittedSubtrees property.
*
* @param value
* allowed object is
* {@link GeneralSubtreesType }
*
*/
public void setPermittedSubtrees(GeneralSubtreesType value) {
this.permittedSubtrees = value;
}
/**
* Gets the value of the excludedSubtrees property.
*
* @return
* possible object is
* {@link GeneralSubtreesType }
*
*/
public GeneralSubtreesType getExcludedSubtrees() {
return excludedSubtrees;
}
/**
* Sets the value of the excludedSubtrees property.
*
* @param value
* allowed object is
* {@link GeneralSubtreesType }
*
*/
public void setExcludedSubtrees(GeneralSubtreesType value) {
this.excludedSubtrees = value;
}
}