eu.europa.esig.dss.diagnostic.jaxb.Adapter17 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 eu.europa.esig.dss.enumerations.CertificateStatus;
import jakarta.xml.bind.annotation.adapters.XmlAdapter;
public class Adapter17
extends XmlAdapter
{
public CertificateStatus unmarshal(String value) {
return (eu.europa.esig.dss.jaxb.parsers.CertificateStatusParser.parse(value));
}
public String marshal(CertificateStatus value) {
return (eu.europa.esig.dss.jaxb.parsers.CertificateStatusParser.print(value));
}
}