org.w3._2001.xmlschema.Adapter2 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of movement-rules-model Show documentation
Show all versions of movement-rules-model Show documentation
This module shall have interfaces, XSD, and DTOs
The newest version!
package org.w3._2001.xmlschema;
import java.util.Date;
import javax.xml.bind.annotation.adapters.XmlAdapter;
public class Adapter2
extends XmlAdapter
{
public Date unmarshal(String value) {
return (fish.focus.uvms.movementrules.model.mapper.XsdDateTimeConverter.unmarshal(value));
}
public String marshal(Date value) {
return (fish.focus.uvms.movementrules.model.mapper.XsdDateTimeConverter.marshalDate(value));
}
}