org.openestate.is24.restapi.xml.common.Adapter4 Maven / Gradle / Ivy
package org.openestate.is24.restapi.xml.common;
import java.awt.Color;
import javax.xml.bind.annotation.adapters.XmlAdapter;
public class Adapter4
extends XmlAdapter
{
public Color unmarshal(String value) {
return (org.openestate.is24.restapi.utils.XmlUtils.parseColor(value));
}
public String marshal(Color value) {
return (org.openestate.is24.restapi.utils.XmlUtils.printColor(value));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy