minor Javadoc improvement to SchemaManagementToolCoordinator
This commit is contained in:
parent
5c5d2c2f94
commit
0c1a49604e
|
@ -50,10 +50,12 @@ import static org.hibernate.cfg.AvailableSettings.JAKARTA_HBM2DDL_SCRIPTS_DROP_T
|
||||||
import static org.hibernate.internal.log.DeprecationLogger.DEPRECATION_LOGGER;
|
import static org.hibernate.internal.log.DeprecationLogger.DEPRECATION_LOGGER;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Responsible for coordinating SchemaManagementTool execution(s) for auto-tooling whether
|
* Responsible for coordinating {@link SchemaManagementTool} execution
|
||||||
* from JPA or hbm2ddl.auto.
|
* whether from {@value AvailableSettings#HBM2DDL_AUTO}, JPA-standard
|
||||||
|
* {@value AvailableSettings#JAKARTA_HBM2DDL_DATABASE_ACTION}, or
|
||||||
|
* {@link org.hibernate.relational.SchemaManager}.
|
||||||
* <p>
|
* <p>
|
||||||
* The main entry point is {@link #process}
|
* The main entry point is {@link #process}.
|
||||||
*
|
*
|
||||||
* @author Steve Ebersole
|
* @author Steve Ebersole
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -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;
|
package org.hibernate.tool.schema.spi;
|
||||||
|
|
Loading…
Reference in New Issue