com.elluminate.sas.Adapter2 Maven / Gradle / Ivy
package com.elluminate.sas;
import javax.xml.bind.annotation.adapters.XmlAdapter;
import org.joda.time.DateMidnight;
public class Adapter2
extends XmlAdapter
{
public DateMidnight unmarshal(String value) {
return (org.jasig.xml.bind.JodaTypeConverter.parseDate(value));
}
public String marshal(DateMidnight value) {
return (org.jasig.xml.bind.JodaTypeConverter.printDate(value));
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy