br.com.anteros.nextcloud.api.utils.LocalDateXmlAdapter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Anteros-NextCloud Show documentation
Show all versions of Anteros-NextCloud Show documentation
Anteros NextCloud for Java.
package br.com.anteros.nextcloud.api.utils;
import java.time.LocalDate;
import javax.xml.bind.annotation.adapters.XmlAdapter;
public class LocalDateXmlAdapter extends XmlAdapter
{
@Override
public String marshal(LocalDate date)
{
return date.toString();
}
@Override
public LocalDate unmarshal(String date)
{
return LocalDate.parse(date.substring(0, 10));
}
}