// // 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.XmlElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for Policy complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="Policy"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="Id" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="Url" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="Notice" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="DigestAlgoAndValue" type="{http://dss.esig.europa.eu/validation/diagnostic}DigestAlgoAndValue" minOccurs="0"/> * <element name="Asn1Processable" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> * <element name="Identified" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> * <element name="Status" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> * <element name="ProcessingError" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="DigestAlgorithmsEqual" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Policy", propOrder = { "id", "url", "notice", "digestAlgoAndValue", "asn1Processable", "identified", "status", "processingError", "digestAlgorithmsEqual" }) public class XmlPolicy { @XmlElement(name = "Id", required = true) protected String id; @XmlElement(name = "Url") protected String url; @XmlElement(name = "Notice") protected String notice; @XmlElement(name = "DigestAlgoAndValue") protected XmlDigestAlgoAndValue digestAlgoAndValue; @XmlElement(name = "Asn1Processable") protected Boolean asn1Processable; @XmlElement(name = "Identified") protected Boolean identified; @XmlElement(name = "Status") protected Boolean status; @XmlElement(name = "ProcessingError") protected String processingError; @XmlElement(name = "DigestAlgorithmsEqual") protected Boolean digestAlgorithmsEqual; /** * 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 url property. * * @return * possible object is * {@link String } * */ public String getUrl() { return url; } /** * Sets the value of the url property. * * @param value * allowed object is * {@link String } * */ public void setUrl(String value) { this.url = value; } /** * Gets the value of the notice property. * * @return * possible object is * {@link String } * */ public String getNotice() { return notice; } /** * Sets the value of the notice property. * * @param value * allowed object is * {@link String } * */ public void setNotice(String value) { this.notice = value; } /** * Gets the value of the digestAlgoAndValue property. * * @return * possible object is * {@link XmlDigestAlgoAndValue } * */ public XmlDigestAlgoAndValue getDigestAlgoAndValue() { return digestAlgoAndValue; } /** * Sets the value of the digestAlgoAndValue property. * * @param value * allowed object is * {@link XmlDigestAlgoAndValue } * */ public void setDigestAlgoAndValue(XmlDigestAlgoAndValue value) { this.digestAlgoAndValue = value; } /** * Gets the value of the asn1Processable property. * * @return * possible object is * {@link Boolean } * */ public Boolean isAsn1Processable() { return asn1Processable; } /** * Sets the value of the asn1Processable property. * * @param value * allowed object is * {@link Boolean } * */ public void setAsn1Processable(Boolean value) { this.asn1Processable = value; } /** * Gets the value of the identified property. * * @return * possible object is * {@link Boolean } * */ public Boolean isIdentified() { return identified; } /** * Sets the value of the identified property. * * @param value * allowed object is * {@link Boolean } * */ public void setIdentified(Boolean value) { this.identified = value; } /** * Gets the value of the status property. * * @return * possible object is * {@link Boolean } * */ public Boolean isStatus() { return status; } /** * Sets the value of the status property. * * @param value * allowed object is * {@link Boolean } * */ public void setStatus(Boolean value) { this.status = value; } /** * Gets the value of the processingError property. * * @return * possible object is * {@link String } * */ public String getProcessingError() { return processingError; } /** * Sets the value of the processingError property. * * @param value * allowed object is * {@link String } * */ public void setProcessingError(String value) { this.processingError = value; } /** * Gets the value of the digestAlgorithmsEqual property. * * @return * possible object is * {@link Boolean } * */ public Boolean isDigestAlgorithmsEqual() { return digestAlgorithmsEqual; } /** * Sets the value of the digestAlgorithmsEqual property. * * @param value * allowed object is * {@link Boolean } * */ public void setDigestAlgorithmsEqual(Boolean value) { this.digestAlgorithmsEqual = value; } }