org.apache.cxf.ws.rm.v200502wsa15.Adapter3 Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2011.12.15 at 11:21:45 AM EST
//
package org.apache.cxf.ws.rm.v200502wsa15;
import javax.xml.bind.annotation.adapters.XmlAdapter;
public class Adapter3
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));
}
}