org.w3._2001.xmlschema.Adapter1 Maven / Gradle / Ivy
package org.w3._2001.xmlschema;
import java.util.Date;
import javax.xml.bind.annotation.adapters.XmlAdapter;
public class Adapter1
extends XmlAdapter
{
public Date unmarshal(String value) {
return (fish.focus.uvms.exchange.model.mapper.XsdDateTimeConverter.unmarshal(value));
}
public String marshal(Date value) {
return (fish.focus.uvms.exchange.model.mapper.XsdDateTimeConverter.marshalDateTime(value));
}
}