org.apache.cxf.ws.rmp.v200502.Adapter3 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.rmp.v200502;
import javax.xml.bind.annotation.adapters.XmlAdapter;
public class Adapter3
extends XmlAdapter
{
public Long unmarshal(String value) {
return new Long(value);
}
public String marshal(Long value) {
if (value == null) {
return null;
}
return value.toString();
}
}