Uses of Interface
org.hibernate.boot.model.relational.Exportable
Packages that use Exportable
Package
Description
Some SPIs related to DDL generation and schema management.
Support for temporary tables.
This package defines the Hibernate configuration-time mapping model.
An implementation of the SPI for the tooling related to DDL generation, export, migration, and validation.
An SPI for tooling related to DDL generation, export, migration, and validation.
-
Uses of Exportable in org.hibernate.boot.model.relational
Subinterfaces of Exportable in org.hibernate.boot.model.relationalModifier and TypeInterfaceDescriptioninterface
An auxiliary database object is a trigger, function, stored procedure, or anything similar which is defined using explicit handwritten DDLcreate
anddrop
statements in the mapping metadata.interface
Database objects (table, sequence, etc) which are associated with a contributor (ORM, Envers, etc) and can be selectively exported per contributorClasses in org.hibernate.boot.model.relational that implement ExportableModifier and TypeClassDescriptionclass
Convenience base class forAuxiliaryDatabaseObject
s.class
Mainly this is used to support legacy sequence exporting.class
Models a databaseSEQUENCE
.class
A simple implementation ofAbstractAuxiliaryDatabaseObject
in which theCREATE
andDROP
strings are provided up front. -
Uses of Exportable in org.hibernate.dialect.temptable
Classes in org.hibernate.dialect.temptable that implement Exportable -
Uses of Exportable in org.hibernate.mapping
Subinterfaces of Exportable in org.hibernate.mappingModifier and TypeInterfaceDescriptioninterface
A mapping model object which represents a user defined type.Classes in org.hibernate.mapping that implement ExportableModifier and TypeClassDescriptionclass
class
A mapping model object representing a constraint on a relational database table.class
class
A mapping model object representing a foreign key constraint.class
A mapping model object representing an index on a relational database table.class
A mapping model object representing a primary key constraint.class
A mapping model object representing a relational database table.class
A mapping model object representing a unique key constraint on a relational database table.class
A mapping model object representing a named relational database array type.class
A mapping model object representing a relational database UDT. -
Uses of Exportable in org.hibernate.tool.schema.internal
Methods in org.hibernate.tool.schema.internal with parameters of type ExportableModifier and TypeMethodDescriptionprotected void
AbstractSchemaMigrator.checkExportIdentifier
(Exportable exportable, Set<String> exportIdentifiers) -
Uses of Exportable in org.hibernate.tool.schema.spi
Classes in org.hibernate.tool.schema.spi with type parameters of type ExportableModifier and TypeInterfaceDescriptioninterface
Exporter<T extends Exportable>
Defines a contract for exporting of database objects (tables, sequences, etc) for use in SQLCREATE
andDROP
scripts.