org.apache.cxf.ws.rm.v200702.Adapter6 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cxf-rt-ws-rm Show documentation
Show all versions of cxf-rt-ws-rm Show documentation
Apache CXF Runtime WS Reliable Messaging
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.08.08 at 05:55:46 PM EDT
//
package org.apache.cxf.ws.rm.v200702;
import javax.xml.bind.annotation.adapters.XmlAdapter;
public class Adapter6
extends XmlAdapter
{
public Long unmarshal(String value) {
return (javax.xml.bind.DatatypeConverter.parseLong(value));
}
public String marshal(Long value) {
if (value == null) {
return null;
}
return (javax.xml.bind.DatatypeConverter.printLong(value));
}
}