![JAR search and dependency download from the Maven repository](/logo.png)
io.motown.ocpp.v15.soap.chargepoint.schema.Adapter1 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ocpp-v15-soap Show documentation
Show all versions of ocpp-v15-soap Show documentation
Open Charge Point Protocol (OCPP). Provides a web service endpoint based on OCPP 1.5.
The newest version!
package io.motown.ocpp.v15.soap.chargepoint.schema;
import java.util.Date;
import javax.xml.bind.annotation.adapters.XmlAdapter;
public class Adapter1
extends XmlAdapter
{
public Date unmarshal(String value) {
return (org.apache.cxf.xjc.runtime.DataTypeAdapter.parseDateTime(value));
}
public String marshal(Date value) {
return (org.apache.cxf.xjc.runtime.DataTypeAdapter.printDateTime(value));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy