All Downloads are FREE. Search and download functionalities are using the official Maven repository.

eu.europa.esig.dss.jaxb.diagnostic.XmlCertifiedRole Maven / Gradle / Ivy

There is a newer version: 6.0.d4j.2
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2017.05.29 at 09:26:39 AM CEST 
//


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;


/**
 * 

Java class for CertifiedRole complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <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>
 * 
* * */ @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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy