org.apache.cxf.ws.rm.v200702.Adapter4 Maven / Gradle / Ivy
The newest version!
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.5
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package org.apache.cxf.ws.rm.v200702;
import jakarta.xml.bind.annotation.adapters.XmlAdapter;
public class Adapter4
extends XmlAdapter
{
public Long unmarshal(String value) {
return (jakarta.xml.bind.DatatypeConverter.parseLong(value));
}
public String marshal(Long value) {
if (value == null) {
return null;
}
return (jakarta.xml.bind.DatatypeConverter.printLong(value));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy