Adapter1.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.01 at 06:23:47 PM UTC 
//
package com.googlecode.phisix.api.model;
import java.util.Calendar;
import javax.xml.bind.annotation.adapters.XmlAdapter;
public class Adapter1
    extends XmlAdapter<String, Calendar>
{
    public Calendar unmarshal(String value) {
        return (jakarta.xml.bind.DateAdapter.parseDateTime(value));
    }
    public String marshal(Calendar value) {
        return (jakarta.xml.bind.DateAdapter.printDateTime(value));
    }
}