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

org.hibernate.engine.jdbc.cursor.internal.RefCursorSupportInitiator Maven / Gradle / Ivy

There is a newer version: 7.0.0.Alpha1
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.jdbc.cursor.internal;

import java.util.Map;

import org.hibernate.boot.registry.StandardServiceInitiator;
import org.hibernate.engine.jdbc.cursor.spi.RefCursorSupport;
import org.hibernate.service.spi.ServiceRegistryImplementor;

/**
 * Service initiator for RefCursorSupport service
 *
 * @author Steve Ebersole
 */
public class RefCursorSupportInitiator implements StandardServiceInitiator {
	/**
	 * Singleton access
	 */
	public static final RefCursorSupportInitiator INSTANCE = new RefCursorSupportInitiator();

	@Override
	public RefCursorSupport initiateService(Map configurationValues, ServiceRegistryImplementor registry) {
		return new StandardRefCursorSupport();
	}

	@Override
	public Class getServiceInitiated() {
		return RefCursorSupport.class;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy