// // 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.19 at 08:28:00 AM CET // package eu.europa.esig.dss.jaxb.simplereport; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlValue; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import eu.europa.esig.dss.validation.SignatureQualification; /** * <p>Java class for SignatureLevel complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="SignatureLevel"> * <simpleContent> * <extension base="<http://dss.esig.europa.eu/validation/simple-report>SignatureQualification"> * <attribute name="description" type="{http://www.w3.org/2001/XMLSchema}string" /> * </extension> * </simpleContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SignatureLevel", propOrder = { "value" }) public class XmlSignatureLevel { @XmlValue @XmlJavaTypeAdapter(Adapter4 .class) protected SignatureQualification value; @XmlAttribute(name = "description") protected String description; /** * Gets the value of the value property. * * @return * possible object is * {@link String } * */ public SignatureQualification getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link String } * */ public void setValue(SignatureQualification value) { this.value = value; } /** * Gets the value of the description property. * * @return * possible object is * {@link String } * */ public String getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link String } * */ public void setDescription(String value) { this.description = value; } }