All Downloads are FREE. Search and download functionalities are using the official Maven repository.

eu.europa.esig.dss.diagnostic.jaxb.XmlOrphanRevocationToken Maven / Gradle / Ivy

There is a newer version: 6.0.d4j.2
Show newest version
//
// 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy