// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // 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: 2017.01.24 at 06:43:16 AM CET // package eu.europa.esig.jaxb.policy; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for LevelConstraint complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="LevelConstraint"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attribute name="Level" type="{http://dss.esig.europa.eu/validation/policy}level" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "LevelConstraint") @XmlSeeAlso({ RevocationConstraints.class, CryptographicConstraint.class, ValueConstraint.class, TimeConstraint.class, MultiValuesConstraint.class }) public class LevelConstraint { @XmlAttribute(name = "Level") protected Level level; /** * Gets the value of the level property. * * @return * possible object is * {@link Level } * */ public Level getLevel() { return level; } /** * Sets the value of the level property. * * @param value * allowed object is * {@link Level } * */ public void setLevel(Level value) { this.level = value; } }