minor Javadoc improvement to SchemaManagementToolCoordinator

This commit is contained in:
Gavin King 2023-07-13 12:37:50 +02:00
parent 5c5d2c2f94
commit 0c1a49604e
2 changed files with 11 additions and 4 deletions

View File

@ -50,10 +50,12 @@ import static org.hibernate.cfg.AvailableSettings.JAKARTA_HBM2DDL_SCRIPTS_DROP_T
import static org.hibernate.internal.log.DeprecationLogger.DEPRECATION_LOGGER;
/**
* Responsible for coordinating SchemaManagementTool execution(s) for auto-tooling whether
* from JPA or hbm2ddl.auto.
* Responsible for coordinating {@link SchemaManagementTool} execution
* whether from {@value AvailableSettings#HBM2DDL_AUTO}, JPA-standard
* {@value AvailableSettings#JAKARTA_HBM2DDL_DATABASE_ACTION}, or
* {@link org.hibernate.relational.SchemaManager}.
* <p>
* The main entry point is {@link #process}
* The main entry point is {@link #process}.
*
* @author Steve Ebersole
*/

View File

@ -6,6 +6,11 @@
*/
/**
* An SPI for the tooling related to DDL generation, export, migration, and validation.
* An SPI for tooling related to DDL generation, export, migration, and validation.
* Schema management actions may be requested programmatically by calling
* {@link org.hibernate.tool.schema.spi.SchemaManagementToolCoordinator#process}.
*
* @see org.hibernate.tool.schema.spi.SchemaManagementTool
* @see org.hibernate.tool.schema.spi.SchemaManagementToolCoordinator
*/
package org.hibernate.tool.schema.spi;