eu.europa.esig.dss.diagnostic.jaxb.XmlOrphanRevocationToken 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.
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0
// See https://javaee.github.io/jaxb-v2/
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2021.10.20 at 09:59:47 AM EEST
//
package eu.europa.esig.dss.diagnostic.jaxb;
import java.io.Serializable;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import eu.europa.esig.dss.enumerations.RevocationType;
/**
* Java class for OrphanRevocationToken complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="OrphanRevocationToken">
* <complexContent>
* <extension base="{http://dss.esig.europa.eu/validation/diagnostic}OrphanToken">
* <sequence>
* <element name="Type" type="{http://dss.esig.europa.eu/validation/diagnostic}RevocationType"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "OrphanRevocationToken", propOrder = {
"type"
})
public class XmlOrphanRevocationToken
extends XmlOrphanToken
implements Serializable
{
private final static long serialVersionUID = 1L;
@XmlElement(name = "Type", required = true, type = String.class)
@XmlJavaTypeAdapter(Adapter16 .class)
protected RevocationType type;
/**
* Gets the value of the type property.
*
* @return
* possible object is
* {@link String }
*
*/
public RevocationType getType() {
return type;
}
/**
* Sets the value of the type property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setType(RevocationType value) {
this.type = value;
}
}