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

org.jpmml.model.moxy.MOXyJAXBUtil Maven / Gradle / Ivy

There is a newer version: 1.6.6
Show newest version
/*
 * Copyright (c) 2021 Villu Ruusmann
 */
package org.jpmml.model.moxy;

import jakarta.xml.bind.JAXBException;
import org.eclipse.persistence.jaxb.JAXBContext;
import org.jpmml.model.JAXBUtil;

public class MOXyJAXBUtil {

	private MOXyJAXBUtil(){
	}

	static
	public JAXBContext getContext() throws JAXBException {

		try {
			return (JAXBContext)JAXBUtil.getContext();
		} catch(ClassCastException cce){
			throw new IllegalStateException("Not an EclipseLink MOXy runtime", cce);
		}
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy