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-bundle-minimal Show documentation
Show all versions of cxf-bundle-minimal Show documentation
Apache CXF Minimal Bundle Jar
The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.10-b140310.1920
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2015.10.30 at 01:40:59 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();
}
}