// // 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 java.util.Date; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; /** * <p>Java class for TrustedList complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="TrustedList"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="CountryCode" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="Url" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="SequenceNumber" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/> * <element name="Version" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/> * <element name="LastLoading" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/> * <element name="IssueDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/> * <element name="NextUpdate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/> * <element name="WellSigned" type="{http://www.w3.org/2001/XMLSchema}boolean"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TrustedList", propOrder = { "countryCode", "url", "sequenceNumber", "version", "lastLoading", "issueDate", "nextUpdate", "wellSigned" }) public class XmlTrustedList { @XmlElement(name = "CountryCode", required = true) protected String countryCode; @XmlElement(name = "Url", required = true) protected String url; @XmlElement(name = "SequenceNumber") protected Integer sequenceNumber; @XmlElement(name = "Version") protected Integer version; @XmlElement(name = "LastLoading", type = String.class) @XmlJavaTypeAdapter(Adapter1 .class) @XmlSchemaType(name = "dateTime") protected Date lastLoading; @XmlElement(name = "IssueDate", type = String.class) @XmlJavaTypeAdapter(Adapter1 .class) @XmlSchemaType(name = "dateTime") protected Date issueDate; @XmlElement(name = "NextUpdate", type = String.class) @XmlJavaTypeAdapter(Adapter1 .class) @XmlSchemaType(name = "dateTime") protected Date nextUpdate; @XmlElement(name = "WellSigned") protected boolean wellSigned; /** * Gets the value of the countryCode property. * * @return * possible object is * {@link String } * */ public String getCountryCode() { return countryCode; } /** * Sets the value of the countryCode property. * * @param value * allowed object is * {@link String } * */ public void setCountryCode(String value) { this.countryCode = 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 sequenceNumber property. * * @return * possible object is * {@link Integer } * */ public Integer getSequenceNumber() { return sequenceNumber; } /** * Sets the value of the sequenceNumber property. * * @param value * allowed object is * {@link Integer } * */ public void setSequenceNumber(Integer value) { this.sequenceNumber = value; } /** * Gets the value of the version property. * * @return * possible object is * {@link Integer } * */ public Integer getVersion() { return version; } /** * Sets the value of the version property. * * @param value * allowed object is * {@link Integer } * */ public void setVersion(Integer value) { this.version = value; } /** * Gets the value of the lastLoading property. * * @return * possible object is * {@link String } * */ public Date getLastLoading() { return lastLoading; } /** * Sets the value of the lastLoading property. * * @param value * allowed object is * {@link String } * */ public void setLastLoading(Date value) { this.lastLoading = value; } /** * Gets the value of the issueDate property. * * @return * possible object is * {@link String } * */ public Date getIssueDate() { return issueDate; } /** * Sets the value of the issueDate property. * * @param value * allowed object is * {@link String } * */ public void setIssueDate(Date value) { this.issueDate = value; } /** * Gets the value of the nextUpdate property. * * @return * possible object is * {@link String } * */ public Date getNextUpdate() { return nextUpdate; } /** * Sets the value of the nextUpdate property. * * @param value * allowed object is * {@link String } * */ public void setNextUpdate(Date value) { this.nextUpdate = value; } /** * Gets the value of the wellSigned property. * */ public boolean isWellSigned() { return wellSigned; } /** * Sets the value of the wellSigned property. * */ public void setWellSigned(boolean value) { this.wellSigned = value; } }