Adapter1.java

//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0 
// See <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a> 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2019.08.22 at 12:17:55 PM UTC 
//


package ejava.projects.esales.dto;

import javax.xml.bind.annotation.adapters.XmlAdapter;

public class Adapter1
    extends XmlAdapter<String, Float>
{


    public Float unmarshal(String value) {
        return new Float(value);
    }

    public String marshal(Float value) {
        if (value == null) {
            return null;
        }
        return value.toString();
    }

}