eu.europa.esig.dss.detailedreport.jaxb.XmlRAC Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dss-detailed-report-jaxb Show documentation
Show all versions of dss-detailed-report-jaxb Show documentation
Generated source from XSD for Detailed Report and additional XSLT (for HTML/PDF renderings).
//
// 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:12 PM CET
//
package eu.europa.esig.dss.detailedreport.jaxb;
import java.io.Serializable;
import java.util.Date;
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.XmlAttribute;
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 RAC complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="RAC">
* <complexContent>
* <extension base="{http://dss.esig.europa.eu/validation/detailed-report}ConstraintsConclusion">
* <sequence>
* <element name="RevocationThisUpdate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
* <element name="RevocationProductionDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
* <element name="CRS" type="{http://dss.esig.europa.eu/validation/detailed-report}CRS" minOccurs="0"/>
* </sequence>
* <attribute name="Id" type="{http://www.w3.org/2001/XMLSchema}string" />
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "RAC", propOrder = {
"revocationThisUpdate",
"revocationProductionDate",
"crs"
})
public class XmlRAC
extends XmlConstraintsConclusion
implements Serializable
{
private final static long serialVersionUID = 1L;
@XmlElement(name = "RevocationThisUpdate", required = true, type = String.class)
@XmlJavaTypeAdapter(DateParser.class)
@XmlSchemaType(name = "dateTime")
protected Date revocationThisUpdate;
@XmlElement(name = "RevocationProductionDate", required = true, type = String.class)
@XmlJavaTypeAdapter(DateParser.class)
@XmlSchemaType(name = "dateTime")
protected Date revocationProductionDate;
@XmlElement(name = "CRS")
protected XmlCRS crs;
@XmlAttribute(name = "Id")
protected String id;
/**
* Gets the value of the revocationThisUpdate property.
*
* @return
* possible object is
* {@link String }
*
*/
public Date getRevocationThisUpdate() {
return revocationThisUpdate;
}
/**
* Sets the value of the revocationThisUpdate property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setRevocationThisUpdate(Date value) {
this.revocationThisUpdate = value;
}
/**
* Gets the value of the revocationProductionDate property.
*
* @return
* possible object is
* {@link String }
*
*/
public Date getRevocationProductionDate() {
return revocationProductionDate;
}
/**
* Sets the value of the revocationProductionDate property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setRevocationProductionDate(Date value) {
this.revocationProductionDate = value;
}
/**
* Gets the value of the crs property.
*
* @return
* possible object is
* {@link XmlCRS }
*
*/
public XmlCRS getCRS() {
return crs;
}
/**
* Sets the value of the crs property.
*
* @param value
* allowed object is
* {@link XmlCRS }
*
*/
public void setCRS(XmlCRS value) {
this.crs = value;
}
/**
* 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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy