org.openestate.io.is24_xml.xml.Adapter23 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of OpenEstate-IO-IS24-XML Show documentation
Show all versions of OpenEstate-IO-IS24-XML Show documentation
OpenEstate-IO-IS24-XML is a Java library to read and write real estate data in the IS24-XML format, that was used by immobilienscout24.de until 2014.
package org.openestate.io.is24_xml.xml;
import javax.xml.bind.annotation.adapters.XmlAdapter;
public class Adapter23
extends XmlAdapter
{
public Long unmarshal(String value) {
return (org.openestate.io.is24_xml.Is24XmlUtils.parseZahl5(value));
}
public String marshal(Long value) {
return (org.openestate.io.is24_xml.Is24XmlUtils.printZahl5(value));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy