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: 2025.11.07 at 06:08:00 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 (jakarta.xml.bind.DatatypeConverter.parseString(value));
}
public String marshal(String value) {
return (jakarta.xml.bind.DatatypeConverter.printString(value));
}
}