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

org.hibernate.type.spi.TypeBootstrapContext Maven / Gradle / Ivy

There is a newer version: 5.6.15.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.type.spi;

import java.util.Map;

/**
 * Provide a way to customize the {@link org.hibernate.type.Type} instantiation process.
 * 

* If a custom {@link org.hibernate.type.Type} defines a constructor which takes the * {@link TypeBootstrapContext} argument, Hibernate will use this instead of the * default constructor. * * @author Vlad Mihalcea * * @since 5.4 */ public interface TypeBootstrapContext { Map getConfigurationSettings(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy