org.glassfish.appclient.client.acc.config.Adapter2 Maven / Gradle / Ivy
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.1
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package org.glassfish.appclient.client.acc.config;
import jakarta.xml.bind.annotation.adapters.XmlAdapter;
public class Adapter2
extends XmlAdapter
{
public Integer unmarshal(String value) {
return (jakarta.xml.bind.DatatypeConverter.parseInt(value));
}
public String marshal(Integer value) {
return (jakarta.xml.bind.DatatypeConverter.printInt(value));
}
}