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

org.hibernate.boot.jaxb.mapping.spi.Adapter6 Maven / Gradle / Ivy

The newest version!

package org.hibernate.boot.jaxb.mapping.spi;

import jakarta.persistence.GenerationType;
import jakarta.xml.bind.annotation.adapters.XmlAdapter;

public class Adapter6
    extends XmlAdapter
{


    public GenerationType unmarshal(String value) {
        return (org.hibernate.boot.jaxb.mapping.internal.GenerationTypeMarshalling.fromXml(value));
    }

    public String marshal(GenerationType value) {
        return (org.hibernate.boot.jaxb.mapping.internal.GenerationTypeMarshalling.toXml(value));
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy