All Downloads are FREE. Search and download functionalities are using the official Maven repository.

br.com.anteros.nextcloud.api.utils.LocalDateXmlAdapter Maven / Gradle / Ivy

There is a newer version: 1.0.16
Show newest version
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));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy