
eu.europa.esig.dss.simplecertificatereport.jaxb.XmlRevocation Maven / Gradle / Ivy
//
// This file was generated by the Eclipse Implementation of JAXB, v3.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2024.12.24 at 03:19:25 PM CET
//
package eu.europa.esig.dss.simplecertificatereport.jaxb;
import java.io.Serializable;
import java.util.Date;
import eu.europa.esig.dss.enumerations.RevocationReason;
import eu.europa.esig.dss.jaxb.parsers.DateParser;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
* Java class for Revocation complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Revocation">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="thisUpdate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* <element name="revocationDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* <element name="revocationReason" type="{http://dss.esig.europa.eu/validation/simple-certificate-report}RevocationReason" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Revocation", propOrder = {
"thisUpdate",
"revocationDate",
"revocationReason"
})
public class XmlRevocation implements Serializable
{
private final static long serialVersionUID = 1L;
@XmlElement(type = String.class)
@XmlJavaTypeAdapter(DateParser.class)
@XmlSchemaType(name = "dateTime")
protected Date thisUpdate;
@XmlElement(type = String.class)
@XmlJavaTypeAdapter(DateParser.class)
@XmlSchemaType(name = "dateTime")
protected Date revocationDate;
@XmlElement(type = String.class)
@XmlJavaTypeAdapter(Adapter2 .class)
protected RevocationReason revocationReason;
/**
* Gets the value of the thisUpdate property.
*
* @return
* possible object is
* {@link String }
*
*/
public Date getThisUpdate() {
return thisUpdate;
}
/**
* Sets the value of the thisUpdate property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setThisUpdate(Date value) {
this.thisUpdate = value;
}
/**
* Gets the value of the revocationDate property.
*
* @return
* possible object is
* {@link String }
*
*/
public Date getRevocationDate() {
return revocationDate;
}
/**
* Sets the value of the revocationDate property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setRevocationDate(Date value) {
this.revocationDate = value;
}
/**
* Gets the value of the revocationReason property.
*
* @return
* possible object is
* {@link String }
*
*/
public RevocationReason getRevocationReason() {
return revocationReason;
}
/**
* Sets the value of the revocationReason property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setRevocationReason(RevocationReason value) {
this.revocationReason = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy