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

org.hibernate.SessionBuilder Maven / Gradle / Ivy

There is a newer version: 6.6.2.Final
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;

import java.sql.Connection;
import java.util.TimeZone;

import org.hibernate.resource.jdbc.spi.PhysicalConnectionHandlingMode;
import org.hibernate.resource.jdbc.spi.StatementInspector;

/**
 * Allows creation of a new {@link Session} with specific options.
 * 
 * @author Steve Ebersole
 */
public interface SessionBuilder {
	/**
	 * Opens a session with the specified options.
	 *
	 * @return The session
	 */
	Session openSession();

	/**
	 * Adds a specific interceptor to the session options.
	 *
	 * @param interceptor The interceptor to use.
	 *
	 * @return {@code this}, for method chaining
	 */
	SessionBuilder interceptor(Interceptor interceptor);

	/**
	 * Signifies that no {@link Interceptor} should be used.
	 * 

* By default, if no {@code Interceptor} is explicitly specified, the * {@code Interceptor} associated with the {@link SessionFactory} is * inherited by the new {@link Session}. *

* Calling {@link #interceptor(Interceptor)} with null has the same effect. * * @return {@code this}, for method chaining */ SessionBuilder noInterceptor(); /** * Applies the given {@link StatementInspector} to the session. * * @param statementInspector The StatementInspector to use. * * @return {@code this}, for method chaining */ SessionBuilder statementInspector(StatementInspector statementInspector); /** * Adds a specific connection to the session options. * * @param connection The connection to use. * * @return {@code this}, for method chaining */ SessionBuilder connection(Connection connection); /** * Signifies that the connection release mode from the original session * should be used to create the new session. * * @param mode The connection handling mode to use. * * @return {@code this}, for method chaining */ SessionBuilder connectionHandlingMode(PhysicalConnectionHandlingMode mode); /** * Should the session built automatically join in any ongoing JTA transactions. * * @param autoJoinTransactions Should JTA transactions be automatically joined * * @return {@code this}, for method chaining * * @see jakarta.persistence.SynchronizationType#SYNCHRONIZED */ SessionBuilder autoJoinTransactions(boolean autoJoinTransactions); /** * Should the session be automatically cleared on a failed transaction? * * @param autoClear Whether the Session should be automatically cleared * * @return {@code this}, for method chaining */ SessionBuilder autoClear(boolean autoClear); /** * Specify the initial FlushMode to use for the opened Session * * @param flushMode The initial FlushMode to use for the opened Session * * @return {@code this}, for method chaining * * @see jakarta.persistence.PersistenceContextType */ SessionBuilder flushMode(FlushMode flushMode); /** * Define the tenant identifier to be associated with the opened session. * * @param tenantIdentifier The tenant identifier. * * @return {@code this}, for method chaining */ SessionBuilder tenantIdentifier(String tenantIdentifier); /** * Add one or more {@link SessionEventListener} instances to the list of * listeners for the new session to be built. * * @param listeners The listeners to incorporate into the built Session * * @return {@code this}, for method chaining */ SessionBuilder eventListeners(SessionEventListener... listeners); /** * Remove all listeners intended for the built session currently held here, * including any auto-apply ones; in other words, start with a clean slate. * * @return {@code this}, for method chaining */ SessionBuilder clearEventListeners(); SessionBuilder jdbcTimeZone(TimeZone timeZone); /** * Should the session be automatically closed after transaction completion? * * @param autoClose Should the session be automatically closed * * @return {@code this}, for method chaining * * @see jakarta.persistence.PersistenceContextType */ SessionBuilder autoClose(boolean autoClose); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy