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

org.hibernate.engine.transaction.jta.platform.spi.JtaPlatformResolver Maven / Gradle / Ivy

There is a newer version: 6.5.0.CR2
Show newest version
/*
 * Hibernate, Relational Persistence for Idiomatic Java
 *
 * License: GNU Lesser General Public License (LGPL), version 2.1 or later.
 * See the lgpl.txt file in the root directory or .
 */
package org.hibernate.engine.transaction.jta.platform.spi;

import java.util.Map;

import org.hibernate.service.Service;
import org.hibernate.service.spi.ServiceRegistryImplementor;

/**
 * Service for defining how to resolve or determine the {@link JtaPlatform} to use in configurations where the user
 * did not explicitly specify one.
 *
 * @author Steve Ebersole
 */
public interface JtaPlatformResolver extends Service {
	public JtaPlatform resolveJtaPlatform(Map configurationValues, ServiceRegistryImplementor registry);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy