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: 2024.11.08 at 06:50:05 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));
}
}