Package | Description |
---|---|
org.hibernate.boot |
This package contains the contracts that make up the Hibernate native
bootstrapping API (building a SessionFactory).
|
org.hibernate.boot.internal | |
org.hibernate.boot.spi | |
org.hibernate.cache.internal |
Internal implementations and support for second-level caching.
|
org.hibernate.cfg |
This package defines APIs for configuring Hibernate, and classes
for building the Hibernate configuration-time metamodel.
|
org.hibernate.cfg.beanvalidation | |
org.hibernate.dialect.unique |
Support for Dialect-specific unique constraint definition
|
org.hibernate.envers.boot.internal | |
org.hibernate.integrator.spi | |
org.hibernate.jpa.event.spi | |
org.hibernate.mapping |
This package defines the Hibernate configuration-time metamodel.
|
org.hibernate.secure.spi | |
org.hibernate.testing.junit4 | |
org.hibernate.tool.schema.internal | |
org.hibernate.tool.schema.spi |
Modifier and Type | Method and Description |
---|---|
Metadata |
MetadataBuilder.build()
Actually build the metamodel
|
Metadata |
MetadataSources.buildMetadata()
Short-hand form of calling
MetadataSources.getMetadataBuilder() and using its
MetadataBuilder.build() method in cases where the application wants
to accept the defaults. |
Metadata |
MetadataSources.buildMetadata(StandardServiceRegistry serviceRegistry) |
Modifier and Type | Class and Description |
---|---|
class |
InFlightMetadataCollectorImpl
The implementation of the in-flight Metadata collector contract.
|
class |
MetadataImpl
Container for configuration data collected during binding the metamodel.
|
Modifier and Type | Interface and Description |
---|---|
interface |
InFlightMetadataCollector
An in-flight representation of Metadata while Metadata is being built.
|
interface |
MetadataImplementor
The SPI-level Metadata contract.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractDelegatingMetadata
Convenience base class for custom implementors of
MetadataImplementor using delegation. |
Modifier and Type | Method and Description |
---|---|
void |
CollectionCacheInvalidator.integrate(Metadata metadata,
SessionFactoryImplementor sessionFactory,
SessionFactoryServiceRegistry serviceRegistry) |
Constructor and Description |
---|
Settings(SessionFactoryOptions sessionFactoryOptions,
Metadata metadata)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
Metadata |
ActivationContext.getMetadata()
Access the mapping metadata
|
Modifier and Type | Method and Description |
---|---|
void |
BeanValidationIntegrator.integrate(Metadata metadata,
SessionFactoryImplementor sessionFactory,
SessionFactoryServiceRegistry serviceRegistry) |
Modifier and Type | Method and Description |
---|---|
String |
DefaultUniqueDelegate.getAlterTableToAddUniqueKeyCommand(UniqueKey uniqueKey,
Metadata metadata) |
String |
UniqueDelegate.getAlterTableToAddUniqueKeyCommand(UniqueKey uniqueKey,
Metadata metadata)
Get the SQL ALTER TABLE command to be used to create the given UniqueKey.
|
String |
DB2UniqueDelegate.getAlterTableToAddUniqueKeyCommand(UniqueKey uniqueKey,
Metadata metadata) |
String |
InformixUniqueDelegate.getAlterTableToAddUniqueKeyCommand(UniqueKey uniqueKey,
Metadata metadata) |
String |
DefaultUniqueDelegate.getAlterTableToDropUniqueKeyCommand(UniqueKey uniqueKey,
Metadata metadata) |
String |
UniqueDelegate.getAlterTableToDropUniqueKeyCommand(UniqueKey uniqueKey,
Metadata metadata)
Get the SQL ALTER TABLE command to be used to drop the given UniqueKey.
|
String |
DB2UniqueDelegate.getAlterTableToDropUniqueKeyCommand(UniqueKey uniqueKey,
Metadata metadata) |
Modifier and Type | Method and Description |
---|---|
void |
EnversIntegrator.integrate(Metadata metadata,
SessionFactoryImplementor sessionFactory,
SessionFactoryServiceRegistry serviceRegistry) |
Modifier and Type | Method and Description |
---|---|
void |
Integrator.integrate(Metadata metadata,
SessionFactoryImplementor sessionFactory,
SessionFactoryServiceRegistry serviceRegistry)
Perform integration.
|
Modifier and Type | Method and Description |
---|---|
void |
JpaIntegrator.integrate(Metadata metadata,
SessionFactoryImplementor sessionFactory,
SessionFactoryServiceRegistry serviceRegistry)
Perform integration.
|
Modifier and Type | Method and Description |
---|---|
static String |
Index.buildSqlCreateIndexString(Dialect dialect,
String name,
Table table,
Iterator<Column> columns,
Map<Column,String> columnOrderMap,
boolean unique,
Metadata metadata) |
Modifier and Type | Method and Description |
---|---|
void |
JaccIntegrator.integrate(Metadata metadata,
SessionFactoryImplementor sessionFactory,
SessionFactoryServiceRegistry serviceRegistry) |
Modifier and Type | Method and Description |
---|---|
protected void |
BaseNonConfigCoreFunctionalTestCase.afterMetadataBuilt(Metadata metadata) |
protected void |
BaseNonConfigCoreFunctionalTestCase.applyCacheSettings(Metadata metadata) |
Modifier and Type | Method and Description |
---|---|
void |
SchemaCreatorImpl.doCreation(Metadata metadata,
boolean createNamespaces,
Dialect dialect,
List<Target> targets) |
void |
SchemaCreatorImpl.doCreation(Metadata metadata,
boolean createNamespaces,
Dialect dialect,
Target... targets) |
void |
SchemaCreatorImpl.doCreation(Metadata metadata,
boolean createNamespaces,
List<Target> targets) |
void |
SchemaCreatorImpl.doCreation(Metadata metadata,
boolean createNamespaces,
Target... targets) |
void |
SchemaDropperImpl.doDrop(Metadata metadata,
boolean dropNamespaces,
Dialect dialect,
List<Target> targets) |
void |
SchemaDropperImpl.doDrop(Metadata metadata,
boolean dropNamespaces,
Dialect dialect,
Target... targets) |
void |
SchemaDropperImpl.doDrop(Metadata metadata,
boolean dropNamespaces,
List<Target> targets) |
void |
SchemaDropperImpl.doDrop(Metadata metadata,
boolean dropNamespaces,
Target... targets) |
void |
SchemaMigratorImpl.doMigration(Metadata metadata,
DatabaseInformation existingDatabase,
boolean createNamespaces,
List<Target> targets) |
protected void |
SchemaMigratorImpl.doMigrationToTargets(Metadata metadata,
DatabaseInformation existingDatabase,
boolean createNamespaces,
List<Target> targets) |
void |
SchemaValidatorImpl.doValidation(Metadata metadata,
DatabaseInformation databaseInformation) |
List<String> |
SchemaCreatorImpl.generateCreationCommands(Metadata metadata,
boolean createNamespaces)
For testing...
|
List<String> |
SchemaCreatorImpl.generateCreationCommands(Metadata metadata,
boolean createNamespaces,
Dialect dialect)
For temporary use from JPA schema generation
|
String[] |
StandardAuxiliaryDatabaseObjectExporter.getSqlCreateStrings(AuxiliaryDatabaseObject object,
Metadata metadata) |
String[] |
StandardUniqueKeyExporter.getSqlCreateStrings(Constraint constraint,
Metadata metadata) |
String[] |
StandardForeignKeyExporter.getSqlCreateStrings(ForeignKey foreignKey,
Metadata metadata) |
String[] |
StandardIndexExporter.getSqlCreateStrings(Index index,
Metadata metadata) |
String[] |
StandardSequenceExporter.getSqlCreateStrings(Sequence sequence,
Metadata metadata) |
String[] |
StandardTableExporter.getSqlCreateStrings(Table table,
Metadata metadata) |
String[] |
StandardAuxiliaryDatabaseObjectExporter.getSqlDropStrings(AuxiliaryDatabaseObject object,
Metadata metadata) |
String[] |
StandardUniqueKeyExporter.getSqlDropStrings(Constraint constraint,
Metadata metadata) |
String[] |
StandardForeignKeyExporter.getSqlDropStrings(ForeignKey foreignKey,
Metadata metadata) |
String[] |
StandardIndexExporter.getSqlDropStrings(Index index,
Metadata metadata) |
String[] |
StandardSequenceExporter.getSqlDropStrings(Sequence sequence,
Metadata metadata) |
String[] |
StandardTableExporter.getSqlDropStrings(Table table,
Metadata metadata) |
protected void |
SchemaValidatorImpl.validateColumnType(Table table,
Column column,
ColumnInformation columnInformation,
Metadata metadata) |
protected void |
SchemaValidatorImpl.validateTable(Table table,
TableInformation tableInformation,
Metadata metadata) |
Modifier and Type | Method and Description |
---|---|
void |
SchemaCreator.doCreation(Metadata metadata,
boolean createNamespaces,
Dialect dialect,
List<Target> targets)
Perform the creation to the specified targets
|
void |
SchemaCreator.doCreation(Metadata metadata,
boolean createNamespaces,
Dialect dialect,
Target... targets)
Perform the creation to the specified targets
|
void |
SchemaCreator.doCreation(Metadata metadata,
boolean createNamespaces,
List<Target> targets)
Perform the creation to the specified targets
|
void |
SchemaCreator.doCreation(Metadata metadata,
boolean createNamespaces,
Target... targets)
Perform the creation to the specified targets
|
void |
SchemaDropper.doDrop(Metadata metadata,
boolean dropNamespaces,
Dialect dialect,
List<Target> targets)
Perform the drop to the specified targets
|
void |
SchemaDropper.doDrop(Metadata metadata,
boolean dropNamespaces,
Dialect dialect,
Target... targets)
Perform the drop to the specified targets
|
void |
SchemaDropper.doDrop(Metadata metadata,
boolean dropNamespaces,
List<Target> targets)
Perform the drop to the specified targets
|
void |
SchemaDropper.doDrop(Metadata metadata,
boolean dropNamespaces,
Target... targets)
Perform the drop to the specified targets
|
void |
SchemaMigrator.doMigration(Metadata metadata,
DatabaseInformation existingDatabase,
boolean createNamespaces,
List<Target> targets)
Perform a migration to the specified targets.
|
void |
SchemaValidator.doValidation(Metadata metadata,
DatabaseInformation databaseInformation)
Handle schema validation requests
|
String[] |
Exporter.getSqlCreateStrings(T exportable,
Metadata metadata)
Get the commands needed for creation.
|
String[] |
Exporter.getSqlDropStrings(T exportable,
Metadata metadata)
Get the commands needed for dropping.
|
Copyright © 2001-2017 Red Hat, Inc. All Rights Reserved.