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

no.digipost.xsd.jaxb.XSDateTimeAdapter Maven / Gradle / Ivy


package no.digipost.xsd.jaxb;

import javax.xml.bind.annotation.adapters.XmlAdapter;

import java.time.ZonedDateTime;

public class XSDateTimeAdapter extends XmlAdapter {

	@Override
	public ZonedDateTime unmarshal(String value) {
		return XSDateTimeCustomBinder.parseDateTime(value);
	}

	@Override
	public String marshal(ZonedDateTime value) {
		return XSDateTimeCustomBinder.printDateTime(value);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy