All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.w3._2001.xmlschema.Adapter1 Maven / Gradle / Ivy

The newest version!

package org.w3._2001.xmlschema;

import java.util.Date;
import jakarta.xml.bind.annotation.adapters.XmlAdapter;

public class Adapter1
    extends XmlAdapter
{


    public Date unmarshal(String value) {
        return (org.apache.cxf.xjc.runtime.DataTypeAdapter.parseDateTime(value));
    }

    public String marshal(Date value) {
        return (org.apache.cxf.xjc.runtime.DataTypeAdapter.printDateTime(value));
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy