org.w3._2001.xmlschema.Adapter1 Maven / Gradle / Ivy
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.09.11 at 02:47:26 PM CEST
//
package org.w3._2001.xmlschema;
import java.time.LocalDate;
import jakarta.xml.bind.annotation.adapters.XmlAdapter;
public class Adapter1
extends XmlAdapter
{
public LocalDate unmarshal(String value) {
return (ch.dvbern.oss.lib.iso20022.converter.LocalDateXMLConverter.parse(value));
}
public String marshal(LocalDate value) {
return (ch.dvbern.oss.lib.iso20022.converter.LocalDateXMLConverter.print(value));
}
}