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

org.openestate.io.openimmo.xml.Adapter4 Maven / Gradle / Ivy

Go to download

OpenEstate-IO-OpenImmo is a Java library to read and write real estate data in the OpenImmo format.

The newest version!

package org.openestate.io.openimmo.xml;

import java.util.Calendar;
import javax.xml.bind.annotation.adapters.XmlAdapter;

public class Adapter4
    extends XmlAdapter
{


    public Calendar unmarshal(String value) {
        return (org.openestate.io.openimmo.OpenImmoUtils.parseDate(value));
    }

    public String marshal(Calendar value) {
        return (org.openestate.io.openimmo.OpenImmoUtils.printDate(value));
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy