Adapter2.java

//
// This file was generated by the Eclipse Implementation of JAXB, v2.3.7 
// See https://eclipse-ee4j.github.io/jaxb-ri 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2023.12.01 at 06:56:35 AM UTC 
//


package com.googlecode.phisix.api.model;

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

public class Adapter2
    extends XmlAdapter<String, String>
{


    public String unmarshal(String value) {
        return (javax.xml.bind.DatatypeConverter.parseString(value));
    }

    public String marshal(String value) {
        if (value == null) {
            return null;
        }
        return (javax.xml.bind.DatatypeConverter.printString(value));
    }

}