Adapter2.java
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0
// See <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2019.08.22 at 12:17:55 PM UTC
//
package ejava.projects.esales.dto;
import java.util.Date;
import javax.xml.bind.annotation.adapters.XmlAdapter;
public class Adapter2
extends XmlAdapter<String, Date>
{
public Date unmarshal(String value) {
return (ejava.projects.esales.xml.DateConverter.parseDate(value));
}
public String marshal(Date value) {
return (ejava.projects.esales.xml.DateConverter.printDate(value));
}
}