Adapter4.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 Adapter4
extends XmlAdapter<String, Integer>
{
public Integer unmarshal(String value) {
return new Integer(value);
}
public String marshal(Integer value) {
if (value == null) {
return null;
}
return value.toString();
}
}