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: 2023.12.01 at 06:56:35 AM 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 (javax.xml.bind.DateAdapter.parseDateTime(value));
    }

    public String marshal(Calendar value) {
        return (javax.xml.bind.DateAdapter.printDateTime(value));
    }

}