// // 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.XmlAttribute; 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 CertifiedRole complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="CertifiedRole"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="CertifiedRole" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="NotAfter" type="{http://www.w3.org/2001/XMLSchema}dateTime"/> * <element name="NotBefore" type="{http://www.w3.org/2001/XMLSchema}dateTime"/> * </sequence> * <attribute name="Category" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CertifiedRole", propOrder = { "certifiedRole", "notAfter", "notBefore" }) public class XmlCertifiedRole { @XmlElement(name = "CertifiedRole", required = true) protected String certifiedRole; @XmlElement(name = "NotAfter", required = true, type = String.class) @XmlJavaTypeAdapter(Adapter1 .class) @XmlSchemaType(name = "dateTime") protected Date notAfter; @XmlElement(name = "NotBefore", required = true, type = String.class) @XmlJavaTypeAdapter(Adapter1 .class) @XmlSchemaType(name = "dateTime") protected Date notBefore; @XmlAttribute(name = "Category", required = true) protected String category; /** * Gets the value of the certifiedRole property. * * @return * possible object is * {@link String } * */ public String getCertifiedRole() { return certifiedRole; } /** * Sets the value of the certifiedRole property. * * @param value * allowed object is * {@link String } * */ public void setCertifiedRole(String value) { this.certifiedRole = value; } /** * Gets the value of the notAfter property. * * @return * possible object is * {@link String } * */ public Date getNotAfter() { return notAfter; } /** * Sets the value of the notAfter property. * * @param value * allowed object is * {@link String } * */ public void setNotAfter(Date value) { this.notAfter = value; } /** * Gets the value of the notBefore property. * * @return * possible object is * {@link String } * */ public Date getNotBefore() { return notBefore; } /** * Sets the value of the notBefore property. * * @param value * allowed object is * {@link String } * */ public void setNotBefore(Date value) { this.notBefore = 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; } }