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

org.onetwo.common.xml.jaxb.DateAdapter Maven / Gradle / Ivy

There is a newer version: 5.2.7
Show newest version
package org.onetwo.common.xml.jaxb;

import java.util.Date;

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

import org.onetwo.common.date.DateUtils;

public class DateAdapter extends XmlAdapter{

	@Override
	public Date unmarshal(String v) throws Exception {
		return DateUtils.parse(v);
	}

	@Override
	public String marshal(Date v) throws Exception {
		return DateUtils.formatDateTime(v);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy