eu.europa.esig.dss.detailedreport.jaxb.XmlCryptographicValidation 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, v2.3.8
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2023.11.03 at 04:25:51 PM CET
//
package eu.europa.esig.dss.detailedreport.jaxb;
import java.io.Serializable;
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 CryptographicValidation complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="CryptographicValidation">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Algorithm" type="{http://dss.esig.europa.eu/validation/detailed-report}CryptographicAlgorithm"/>
* <element name="NotAfter" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* <element name="ValidationTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* <element name="ConcernedMaterial" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* <attribute name="secure" use="required" type="{http://www.w3.org/2001/XMLSchema}boolean" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CryptographicValidation", propOrder = {
"algorithm",
"notAfter",
"validationTime",
"concernedMaterial"
})
public class XmlCryptographicValidation
implements Serializable
{
private static final long serialVersionUID = 1L;
@XmlElement(name = "Algorithm", required = true)
protected XmlCryptographicAlgorithm algorithm;
@XmlElement(name = "NotAfter", type = String.class)
@XmlJavaTypeAdapter(Adapter1 .class)
@XmlSchemaType(name = "dateTime")
protected Date notAfter;
@XmlElement(name = "ValidationTime", type = String.class)
@XmlJavaTypeAdapter(Adapter1 .class)
@XmlSchemaType(name = "dateTime")
protected Date validationTime;
@XmlElement(name = "ConcernedMaterial", required = true)
protected String concernedMaterial;
@XmlAttribute(name = "secure", required = true)
protected boolean secure;
/**
* Gets the value of the algorithm property.
*
* @return
* possible object is
* {@link XmlCryptographicAlgorithm }
*
*/
public XmlCryptographicAlgorithm getAlgorithm() {
return algorithm;
}
/**
* Sets the value of the algorithm property.
*
* @param value
* allowed object is
* {@link XmlCryptographicAlgorithm }
*
*/
public void setAlgorithm(XmlCryptographicAlgorithm value) {
this.algorithm = 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 validationTime property.
*
* @return
* possible object is
* {@link String }
*
*/
public Date getValidationTime() {
return validationTime;
}
/**
* Sets the value of the validationTime property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setValidationTime(Date value) {
this.validationTime = value;
}
/**
* Gets the value of the concernedMaterial property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getConcernedMaterial() {
return concernedMaterial;
}
/**
* Sets the value of the concernedMaterial property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setConcernedMaterial(String value) {
this.concernedMaterial = value;
}
/**
* Gets the value of the secure property.
*
*/
public boolean isSecure() {
return secure;
}
/**
* Sets the value of the secure property.
*
*/
public void setSecure(boolean value) {
this.secure = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy