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

org.hibernate.boot.spi.MetadataBuilderContributor 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.boot.spi;

import org.hibernate.boot.MetadataBuilder;

/**
 * A bootstrap process hook for contributing settings to {@link MetadataBuilder}.
 *
 * @author Vlad Mihalcea
 *
 * @since 5.3
 */
public interface MetadataBuilderContributor {
	/**
	 * Perform the process of contributing to MetadataSources.
	 *
	 * @param metadataBuilder The {@link MetadataBuilder}, to which to contribute.
	 */
	void contribute(MetadataBuilder metadataBuilder);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy