eu.europa.esig.dss.diagnostic.jaxb.XmlCertificateRef Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dss-diagnostic-jaxb Show documentation
Show all versions of dss-diagnostic-jaxb Show documentation
Generated source from XSD for Diagnostic Data.
The newest version!
//
// 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.06.17 at 03:23:20 PM EEST
//
package eu.europa.esig.dss.diagnostic.jaxb;
import java.io.Serializable;
import eu.europa.esig.dss.enumerations.CertificateRefOrigin;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
* Java class for CertificateRef complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="CertificateRef">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Origin" type="{http://dss.esig.europa.eu/validation/diagnostic}CertificateRefOriginType"/>
* <element name="IssuerSerial" type="{http://dss.esig.europa.eu/validation/diagnostic}IssuerSerial" minOccurs="0"/>
* <choice>
* <element name="DigestAlgoAndValue" type="{http://dss.esig.europa.eu/validation/diagnostic}DigestAlgoAndValue"/>
* <element name="SerialInfo" type="{http://dss.esig.europa.eu/validation/diagnostic}SignerInfo"/>
* <element name="X509Url" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </choice>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CertificateRef", propOrder = {
"origin",
"issuerSerial",
"digestAlgoAndValue",
"serialInfo",
"x509Url"
})
public class XmlCertificateRef implements Serializable
{
private final static long serialVersionUID = 1L;
@XmlElement(name = "Origin", required = true, type = String.class)
@XmlJavaTypeAdapter(Adapter13 .class)
protected CertificateRefOrigin origin;
@XmlElement(name = "IssuerSerial")
protected XmlIssuerSerial issuerSerial;
@XmlElement(name = "DigestAlgoAndValue")
protected XmlDigestAlgoAndValue digestAlgoAndValue;
@XmlElement(name = "SerialInfo")
protected XmlSignerInfo serialInfo;
@XmlElement(name = "X509Url")
protected String x509Url;
/**
* Gets the value of the origin property.
*
* @return
* possible object is
* {@link String }
*
*/
public CertificateRefOrigin getOrigin() {
return origin;
}
/**
* Sets the value of the origin property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOrigin(CertificateRefOrigin value) {
this.origin = value;
}
/**
* Gets the value of the issuerSerial property.
*
* @return
* possible object is
* {@link XmlIssuerSerial }
*
*/
public XmlIssuerSerial getIssuerSerial() {
return issuerSerial;
}
/**
* Sets the value of the issuerSerial property.
*
* @param value
* allowed object is
* {@link XmlIssuerSerial }
*
*/
public void setIssuerSerial(XmlIssuerSerial value) {
this.issuerSerial = value;
}
/**
* Gets the value of the digestAlgoAndValue property.
*
* @return
* possible object is
* {@link XmlDigestAlgoAndValue }
*
*/
public XmlDigestAlgoAndValue getDigestAlgoAndValue() {
return digestAlgoAndValue;
}
/**
* Sets the value of the digestAlgoAndValue property.
*
* @param value
* allowed object is
* {@link XmlDigestAlgoAndValue }
*
*/
public void setDigestAlgoAndValue(XmlDigestAlgoAndValue value) {
this.digestAlgoAndValue = value;
}
/**
* Gets the value of the serialInfo property.
*
* @return
* possible object is
* {@link XmlSignerInfo }
*
*/
public XmlSignerInfo getSerialInfo() {
return serialInfo;
}
/**
* Sets the value of the serialInfo property.
*
* @param value
* allowed object is
* {@link XmlSignerInfo }
*
*/
public void setSerialInfo(XmlSignerInfo value) {
this.serialInfo = value;
}
/**
* Gets the value of the x509Url property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getX509Url() {
return x509Url;
}
/**
* Sets the value of the x509Url property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setX509Url(String value) {
this.x509Url = value;
}
}