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

no.nav.sbl.dialogarena.adapters.DateTimeAdapter Maven / Gradle / Ivy

There is a newer version: 1.2019.09.25-00.21-49b69f0625e0
Show newest version
package no.nav.sbl.dialogarena.adapters;

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

import org.joda.time.DateTime;

public class DateTimeAdapter extends XmlAdapter {

    public DateTime unmarshal(String value) {
    	return new DateTime(value);
    }

    public String marshal(DateTime value) {
        return value.toString();
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy