org.w3._2001.xmlschema.Adapter1 Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2016.07.28 at 03:59:43 PM CEST
//
package org.w3._2001.xmlschema;
import javax.xml.bind.annotation.adapters.XmlAdapter;
import org.joda.time.LocalTime;
public class Adapter1
extends XmlAdapter
{
public LocalTime unmarshal(String value) {
return (eu.europa.ec.grow.espd.xml.LocalTimeAdapter.unmarshal(value));
}
public String marshal(LocalTime value) {
return (eu.europa.ec.grow.espd.xml.LocalTimeAdapter.marshal(value));
}
}