eu.europa.esig.dss.diagnostic.jaxb.XmlSignerInfo 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.09.11 at 03:26:28 PM CEST
//
package eu.europa.esig.dss.diagnostic.jaxb;
import java.io.Serializable;
import java.math.BigInteger;
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.XmlType;
/**
* Java class for SignerInfo complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="SignerInfo">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="IssuerName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="SerialNumber" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
* <element name="Ski" type="{http://www.w3.org/2001/XMLSchema}base64Binary" minOccurs="0"/>
* </sequence>
* <attribute name="Current" type="{http://www.w3.org/2001/XMLSchema}boolean" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SignerInfo", propOrder = {
"issuerName",
"serialNumber",
"ski"
})
public class XmlSignerInfo implements Serializable
{
private final static long serialVersionUID = 1L;
@XmlElement(name = "IssuerName")
protected String issuerName;
@XmlElement(name = "SerialNumber")
protected BigInteger serialNumber;
@XmlElement(name = "Ski")
protected byte[] ski;
@XmlAttribute(name = "Current")
protected Boolean current;
/**
* Gets the value of the issuerName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIssuerName() {
return issuerName;
}
/**
* Sets the value of the issuerName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIssuerName(String value) {
this.issuerName = value;
}
/**
* Gets the value of the serialNumber property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getSerialNumber() {
return serialNumber;
}
/**
* Sets the value of the serialNumber property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setSerialNumber(BigInteger value) {
this.serialNumber = value;
}
/**
* Gets the value of the ski property.
*
* @return
* possible object is
* byte[]
*/
public byte[] getSki() {
return ski;
}
/**
* Sets the value of the ski property.
*
* @param value
* allowed object is
* byte[]
*/
public void setSki(byte[] value) {
this.ski = value;
}
/**
* Gets the value of the current property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isCurrent() {
return current;
}
/**
* Sets the value of the current property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setCurrent(Boolean value) {
this.current = value;
}
}