// // 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.23 at 04:02:25 PM CET // package eu.europa.esig.dss.jaxb.detailedreport; 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.adapters.XmlJavaTypeAdapter; import eu.europa.esig.dss.validation.SignatureQualification; /** * <p>Java class for SignatureAnalysis complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="SignatureAnalysis"> * <complexContent> * <extension base="{http://dss.esig.europa.eu/validation/detailed-report}ConstraintsConclusion"> * <attribute name="Id" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="SignatureQualification" type="{http://dss.esig.europa.eu/validation/detailed-report}SignatureQualification" /> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SignatureAnalysis") public class XmlSignatureAnalysis extends XmlConstraintsConclusion { @XmlAttribute(name = "Id", required = true) protected String id; @XmlAttribute(name = "SignatureQualification") @XmlJavaTypeAdapter(Adapter4 .class) protected SignatureQualification signatureQualification; /** * Gets the value of the id property. * * @return * possible object is * {@link String } * */ public String getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link String } * */ public void setId(String value) { this.id = value; } /** * Gets the value of the signatureQualification property. * * @return * possible object is * {@link String } * */ public SignatureQualification getSignatureQualification() { return signatureQualification; } /** * Sets the value of the signatureQualification property. * * @param value * allowed object is * {@link String } * */ public void setSignatureQualification(SignatureQualification value) { this.signatureQualification = value; } }