// // 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.26 at 09:19:39 AM CET // package eu.europa.esig.dss.jaxb.diagnostic; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for DigestAlgoAndValue complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="DigestAlgoAndValue"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="DigestMethod" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="DigestValue" type="{http://www.w3.org/2001/XMLSchema}string"/> * </sequence> * <attribute name="Category" type="{http://www.w3.org/2001/XMLSchema}string" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DigestAlgoAndValue", propOrder = { "digestMethod", "digestValue" }) public class XmlDigestAlgoAndValue { @XmlElement(name = "DigestMethod", required = true) protected String digestMethod; @XmlElement(name = "DigestValue", required = true) protected String digestValue; @XmlAttribute(name = "Category") protected String category; /** * Gets the value of the digestMethod property. * * @return * possible object is * {@link String } * */ public String getDigestMethod() { return digestMethod; } /** * Sets the value of the digestMethod property. * * @param value * allowed object is * {@link String } * */ public void setDigestMethod(String value) { this.digestMethod = value; } /** * Gets the value of the digestValue property. * * @return * possible object is * {@link String } * */ public String getDigestValue() { return digestValue; } /** * Sets the value of the digestValue property. * * @param value * allowed object is * {@link String } * */ public void setDigestValue(String value) { this.digestValue = value; } /** * Gets the value of the category property. * * @return * possible object is * {@link String } * */ public String getCategory() { return category; } /** * Sets the value of the category property. * * @param value * allowed object is * {@link String } * */ public void setCategory(String value) { this.category = value; } }