eu.europa.esig.dss.diagnostic.jaxb.XmlPolicyConstraints Maven / Gradle / Ivy
//
// This file was generated by the Eclipse Implementation of JAXB, v3.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2024.09.11 at 03:26:28 PM CEST
//
package eu.europa.esig.dss.diagnostic.jaxb;
import java.io.Serializable;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for PolicyConstraints complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="PolicyConstraints">
* <complexContent>
* <extension base="{http://dss.esig.europa.eu/validation/diagnostic}CertificateExtension">
* <attribute name="requireExplicitPolicy" type="{http://www.w3.org/2001/XMLSchema}int" />
* <attribute name="inhibitPolicyMapping" type="{http://www.w3.org/2001/XMLSchema}int" />
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PolicyConstraints")
public class XmlPolicyConstraints
extends XmlCertificateExtension
implements Serializable
{
private final static long serialVersionUID = 1L;
@XmlAttribute(name = "requireExplicitPolicy")
protected Integer requireExplicitPolicy;
@XmlAttribute(name = "inhibitPolicyMapping")
protected Integer inhibitPolicyMapping;
/**
* Gets the value of the requireExplicitPolicy property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getRequireExplicitPolicy() {
return requireExplicitPolicy;
}
/**
* Sets the value of the requireExplicitPolicy property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setRequireExplicitPolicy(Integer value) {
this.requireExplicitPolicy = value;
}
/**
* Gets the value of the inhibitPolicyMapping property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getInhibitPolicyMapping() {
return inhibitPolicyMapping;
}
/**
* Sets the value of the inhibitPolicyMapping property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setInhibitPolicyMapping(Integer value) {
this.inhibitPolicyMapping = value;
}
}