org.glassfish.appclient.client.acc.config.Adapter6 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of payara-micro Show documentation
Show all versions of payara-micro Show documentation
Micro Distribution of the Payara Project
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-b10
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.02.06 at 01:21:06 PM GMT
//
package org.glassfish.appclient.client.acc.config;
import javax.xml.bind.annotation.adapters.XmlAdapter;
public class Adapter6
extends XmlAdapter
{
public Boolean unmarshal(String value) {
return (org.glassfish.appclient.client.acc.config.util.XML.parseBoolean(value));
}
public String marshal(Boolean value) {
return (java.lang.Boolean.toString(value));
}
}