org.aarboard.nextcloud.api.utils.InstantXmlAdapter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nextcloud-api Show documentation
Show all versions of nextcloud-api Show documentation
Java api library to access nextcloud features from java applications
The newest version!
package org.aarboard.nextcloud.api.utils;
import jakarta.xml.bind.annotation.adapters.XmlAdapter;
import java.time.Instant;
public class InstantXmlAdapter extends XmlAdapter
{
@Override
public Long marshal(Instant instant)
{
return instant.getEpochSecond();
}
@Override
public Instant unmarshal(Long time)
{
return Instant.ofEpochSecond(time);
}
}