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

hbm.org.hibernate.boot.jaxb.hbm.spi.Adapter4 Maven / Gradle / Ivy

The newest version!

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

import jakarta.xml.bind.annotation.adapters.XmlAdapter;
import org.hibernate.EntityMode;

public class Adapter4
    extends XmlAdapter
{


    public EntityMode unmarshal(String value) {
        return (org.hibernate.boot.jaxb.hbm.internal.EntityModeConverter.fromXml(value));
    }

    public String marshal(EntityMode value) {
        return (org.hibernate.boot.jaxb.hbm.internal.EntityModeConverter.toXml(value));
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy