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

no.digipost.jakarta.xml.bind.adapter.LocalDateXmlAdapter Maven / Gradle / Ivy

The newest version!
package no.digipost.jakarta.xml.bind.adapter;

import jakarta.xml.bind.DatatypeConverter;

import java.time.LocalDate;
import java.time.ZonedDateTime;
import java.util.Calendar;

import static java.time.format.DateTimeFormatter.ISO_LOCAL_DATE;

public class LocalDateXmlAdapter extends NullPassthroughXmlAdapter {

    LocalDateXmlAdapter() {
        super(
                ISO_LOCAL_DATE::format,
                xsDate -> {
                    Calendar calendar = DatatypeConverter.parseDate(xsDate);
                    return ZonedDateTime.ofInstant(calendar.toInstant(), calendar.getTimeZone().toZoneId()).toLocalDate();
                });
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy