Uses of Interface
org.hibernate.boot.Metadata
-
Packages that use Metadata 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.bytecode.enhance.spi.interceptor interceptor implementationsorg.hibernate.cache.internal Internal implementations and support for second-level caching.org.hibernate.cfg.beanvalidation org.hibernate.dialect.unique Support for Dialect-specific unique constraint definitionorg.hibernate.envers.boot.internal org.hibernate.integrator.spi org.hibernate.mapping org.hibernate.persister.collection org.hibernate.persister.entity org.hibernate.testing.junit4 org.hibernate.testing.orm.junit org.hibernate.testing.schema org.hibernate.tool.schema.internal org.hibernate.tool.schema.spi org.hibernate.tuple.entity -
-
Uses of Metadata in org.hibernate.boot
Methods in org.hibernate.boot that return Metadata Modifier and Type Method Description MetadataMetadataBuilder. build()Actually build the metamodelMetadataMetadataSources. buildMetadata()Shorthand form of callingMetadataSources.getMetadataBuilder()and using itsMetadataBuilder.build()method in cases where the application wants to accept the defaults.MetadataMetadataSources. buildMetadata(StandardServiceRegistry serviceRegistry) -
Uses of Metadata in org.hibernate.boot.internal
Classes in org.hibernate.boot.internal that implement Metadata Modifier and Type Class Description classInFlightMetadataCollectorImplThe implementation of the in-flight metadata collector contract.classMetadataImplContainer for configuration data collected during binding the metamodel. -
Uses of Metadata in org.hibernate.boot.spi
Subinterfaces of Metadata in org.hibernate.boot.spi Modifier and Type Interface Description interfaceInFlightMetadataCollectorAn in-flight representation ofMetadatawhile it is being built.interfaceMetadataImplementorThe SPI-level Metadata contract.Classes in org.hibernate.boot.spi that implement Metadata Modifier and Type Class Description classAbstractDelegatingMetadataConvenience base class for custom implementors ofMetadataImplementorusing delegation.Methods in org.hibernate.boot.spi that return Metadata Modifier and Type Method Description MetadataAbstractDelegatingMetadataBuilderImplementor. build() -
Uses of Metadata in org.hibernate.bytecode.enhance.spi.interceptor
Methods in org.hibernate.bytecode.enhance.spi.interceptor with parameters of type Metadata Modifier and Type Method Description static LazyAttributesMetadataLazyAttributesMetadata. from(PersistentClass mappedEntity, boolean isEnhanced, boolean collectionsInDefaultFetchGroupEnabled, Metadata metadata)Build a LazyFetchGroupMetadata based on the attributes defined for the PersistentClass -
Uses of Metadata in org.hibernate.cache.internal
Methods in org.hibernate.cache.internal with parameters of type Metadata Modifier and Type Method Description voidCollectionCacheInvalidator. integrate(Metadata metadata, SessionFactoryImplementor sessionFactory, SessionFactoryServiceRegistry serviceRegistry) -
Uses of Metadata in org.hibernate.cfg.beanvalidation
Methods in org.hibernate.cfg.beanvalidation that return Metadata Modifier and Type Method Description MetadataActivationContext. getMetadata()Access the mapping metadataMethods in org.hibernate.cfg.beanvalidation with parameters of type Metadata Modifier and Type Method Description voidBeanValidationIntegrator. integrate(Metadata metadata, BootstrapContext bootstrapContext, SessionFactoryImplementor sessionFactory) -
Uses of Metadata in org.hibernate.dialect.unique
Methods in org.hibernate.dialect.unique with parameters of type Metadata Modifier and Type Method Description StringDB2UniqueDelegate. getAlterTableToAddUniqueKeyCommand(UniqueKey uniqueKey, Metadata metadata, SqlStringGenerationContext context)StringDefaultUniqueDelegate. getAlterTableToAddUniqueKeyCommand(UniqueKey uniqueKey, Metadata metadata, SqlStringGenerationContext context)StringUniqueDelegate. getAlterTableToAddUniqueKeyCommand(UniqueKey uniqueKey, Metadata metadata, SqlStringGenerationContext context)Get the SQL ALTER TABLE command to be used to create the given UniqueKey.StringDB2UniqueDelegate. getAlterTableToDropUniqueKeyCommand(UniqueKey uniqueKey, Metadata metadata, SqlStringGenerationContext context)StringDefaultUniqueDelegate. getAlterTableToDropUniqueKeyCommand(UniqueKey uniqueKey, Metadata metadata, SqlStringGenerationContext context)StringUniqueDelegate. getAlterTableToDropUniqueKeyCommand(UniqueKey uniqueKey, Metadata metadata, SqlStringGenerationContext context)Get the SQL ALTER TABLE command to be used to drop the given UniqueKey. -
Uses of Metadata in org.hibernate.envers.boot.internal
Methods in org.hibernate.envers.boot.internal with parameters of type Metadata Modifier and Type Method Description voidEnversIntegrator. integrate(Metadata metadata, BootstrapContext bootstrapContext, SessionFactoryImplementor sessionFactory) -
Uses of Metadata in org.hibernate.integrator.spi
Methods in org.hibernate.integrator.spi with parameters of type Metadata Modifier and Type Method Description default voidIntegrator. integrate(Metadata metadata, BootstrapContext bootstrapContext, SessionFactoryImplementor sessionFactory)Perform integration.default voidIntegrator. integrate(Metadata metadata, SessionFactoryImplementor sessionFactory, SessionFactoryServiceRegistry serviceRegistry)Deprecated.- use -
Uses of Metadata in org.hibernate.mapping
Methods in org.hibernate.mapping with parameters of type Metadata Modifier and Type Method Description static StringIndex. buildSqlCreateIndexString(SqlStringGenerationContext context, String name, Table table, Iterator<Column> columns, Map<Column,String> columnOrderMap, boolean unique, Metadata metadata)StringColumn. getSqlType(Metadata mapping)Iterator<String>Table. sqlAlterStrings(Dialect dialect, Metadata metadata, TableInformation tableInfo, SqlStringGenerationContext sqlStringGenerationContext) -
Uses of Metadata in org.hibernate.persister.collection
Constructors in org.hibernate.persister.collection with parameters of type Metadata Constructor Description CompositeElementPropertyMapping(String[] elementColumns, String[] elementColumnReaders, String[] elementColumnReaderTemplates, String[] elementFormulaTemplates, CompositeType compositeType, Metadata factory) -
Uses of Metadata in org.hibernate.persister.entity
Methods in org.hibernate.persister.entity with parameters of type Metadata Modifier and Type Method Description protected voidAbstractPropertyMapping. addPropertyPath(String path, Type type, String[] columns, String[] columnReaders, String[] columnReaderTemplates, String[] formulaTemplates, Metadata factory)protected StringUnionSubclassEntityPersister. generateSubquery(PersistentClass model, Metadata mapping)protected voidAbstractPropertyMapping. initComponentPropertyPaths(String path, CompositeType type, String[] columns, String[] columnReaders, String[] columnReaderTemplates, String[] formulaTemplates, Metadata factory)protected voidAbstractPropertyMapping. initIdentifierPropertyPaths(String path, EntityType etype, String[] columns, String[] columnReaders, String[] columnReaderTemplates, String[] formulaTemplates, Metadata factory)protected voidAbstractPropertyMapping. initIdentifierPropertyPaths(String path, EntityType etype, String[] columns, String[] columnReaders, String[] columnReaderTemplates, Metadata factory)protected voidAbstractEntityPersister. initPropertyPaths(Metadata mapping)protected voidAbstractPropertyMapping. initPropertyPaths(String path, Type type, String[] columns, String[] columnReaders, String[] columnReaderTemplates, String[] formulaTemplates, Metadata factory)protected voidAbstractEntityPersister. postConstruct(Metadata mapping)Post-construct is a callback for AbstractEntityPersister subclasses to call after they are all done with their constructor processing. -
Uses of Metadata in org.hibernate.testing.junit4
Methods in org.hibernate.testing.junit4 with parameters of type Metadata Modifier and Type Method Description protected voidBaseNonConfigCoreFunctionalTestCase. afterMetadataBuilt(Metadata metadata)protected voidBaseNonConfigCoreFunctionalTestCase. applyCacheSettings(Metadata metadata) -
Uses of Metadata in org.hibernate.testing.orm.junit
Methods in org.hibernate.testing.orm.junit with parameters of type Metadata Modifier and Type Method Description protected voidDomainModelExtension. afterMetadataBuilt(Metadata metadata)protected voidBaseSessionFactoryFunctionalTest. applyCacheSettings(Metadata metadata)protected static voidDomainModelExtension. applyCacheSettings(Metadata metadata, boolean overrideCacheStrategy, String cacheConcurrencyStrategy) -
Uses of Metadata in org.hibernate.testing.schema
Methods in org.hibernate.testing.schema with parameters of type Metadata Modifier and Type Method Description static voidSchemaCreateHelper. create(Metadata metadata)static voidSchemaCreateHelper. create(Metadata metadata, StandardServiceRegistry serviceRegistry, Connection connection)static voidSchemaCreateHelper. create(Metadata metadata, ServiceRegistry serviceRegistry)static voidSchemaCreateHelper. createOnly(Metadata metadata, ServiceRegistry serviceRegistry)static voidSchemaDropHelper. drop(Metadata metadata)static voidSchemaDropHelper. drop(Metadata metadata, ServiceRegistry serviceRegistry)static voidSchemaUpdateHelper. toStdout(Metadata metadata)static voidSchemaCreateHelper. toStdOut(Metadata metadata)static voidSchemaCreateHelper. toWriter(Metadata metadata, Writer writer)static voidSchemaUpdateHelper. toWriter(Metadata metadata, Writer writer)static voidSchemaUpdateHelper. update(Metadata metadata)static voidSchemaUpdateHelper. update(Metadata metadata, ServiceRegistry serviceRegistry)static voidSchemaValidateHelper. validate(Metadata metadata)static voidSchemaValidateHelper. validate(Metadata metadata, ServiceRegistry serviceRegistry) -
Uses of Metadata in org.hibernate.tool.schema.internal
Methods in org.hibernate.tool.schema.internal with parameters of type Metadata Modifier and Type Method Description protected voidAbstractSchemaMigrator. applyForeignKeys(Table table, TableInformation tableInformation, Dialect dialect, Metadata metadata, Formatter formatter, ExecutionOptions options, SqlStringGenerationContext sqlStringGenerationContext, GenerationTarget... targets)protected voidAbstractSchemaMigrator. applyIndexes(Table table, TableInformation tableInformation, Dialect dialect, Metadata metadata, Formatter formatter, ExecutionOptions options, SqlStringGenerationContext sqlStringGenerationContext, GenerationTarget... targets)protected voidAbstractSchemaMigrator. applyUniqueKeys(Table table, TableInformation tableInfo, Dialect dialect, Metadata metadata, Formatter formatter, ExecutionOptions options, SqlStringGenerationContext sqlStringGenerationContext, GenerationTarget... targets)DelayedDropActionSchemaDropperImpl. buildDelayedAction(Metadata metadata, ExecutionOptions options, ContributableMatcher contributableInclusionFilter, SourceDescriptor sourceDescriptor)voidSchemaCreatorImpl. createFromMetadata(Metadata metadata, ExecutionOptions options, Dialect dialect, Formatter formatter, GenerationTarget... targets)voidSchemaCreatorImpl. createFromMetadata(Metadata metadata, ExecutionOptions options, ContributableMatcher contributableInclusionMatcher, Dialect dialect, Formatter formatter, GenerationTarget... targets)protected voidAbstractSchemaMigrator. createTable(Table table, Dialect dialect, Metadata metadata, Formatter formatter, ExecutionOptions options, SqlStringGenerationContext sqlStringGenerationContext, GenerationTarget... targets)voidSchemaCreatorImpl. doCreation(Metadata metadata, boolean manageNamespaces, GenerationTarget... targets)Intended for use from testsvoidSchemaCreatorImpl. doCreation(Metadata metadata, Dialect dialect, ExecutionOptions options, ContributableMatcher contributableInclusionFilter, SourceDescriptor sourceDescriptor, GenerationTarget... targets)voidSchemaCreatorImpl. doCreation(Metadata metadata, ServiceRegistry serviceRegistry, Map<String,Object> settings, boolean manageNamespaces, GenerationTarget... targets)Intended for use from testsvoidSchemaCreatorImpl. doCreation(Metadata metadata, ExecutionOptions options, ContributableMatcher contributableInclusionFilter, SourceDescriptor sourceDescriptor, TargetDescriptor targetDescriptor)voidSchemaDropperImpl. doDrop(Metadata metadata, boolean manageNamespaces, GenerationTarget... targets)For testsvoidSchemaDropperImpl. doDrop(Metadata metadata, ServiceRegistry serviceRegistry, Map<String,Object> settings, boolean manageNamespaces, GenerationTarget... targets)For testsvoidSchemaDropperImpl. doDrop(Metadata metadata, ExecutionOptions options, Dialect dialect, SourceDescriptor sourceDescriptor, GenerationTarget... targets)For use from testingvoidSchemaDropperImpl. doDrop(Metadata metadata, ExecutionOptions options, ContributableMatcher contributableInclusionFilter, Dialect dialect, SourceDescriptor sourceDescriptor, GenerationTarget... targets)For use from testingvoidSchemaDropperImpl. doDrop(Metadata metadata, ExecutionOptions options, ContributableMatcher contributableInclusionFilter, SourceDescriptor sourceDescriptor, TargetDescriptor targetDescriptor)voidAbstractSchemaMigrator. doMigration(Metadata metadata, ExecutionOptions options, ContributableMatcher contributableInclusionFilter, TargetDescriptor targetDescriptor)voidAbstractSchemaValidator. doValidation(Metadata metadata, ExecutionOptions options, ContributableMatcher contributableInclusionFilter)List<String>SchemaCreatorImpl. generateCreationCommands(Metadata metadata, boolean manageNamespaces)For testing...List<String>SchemaDropperImpl. generateDropCommands(Metadata metadata, boolean manageNamespaces)For testing...protected StringStandardSequenceExporter. getFormattedSequenceName(QualifiedSequenceName name, Metadata metadata, SqlStringGenerationContext context)String[]StandardAuxiliaryDatabaseObjectExporter. getSqlCreateStrings(AuxiliaryDatabaseObject object, Metadata metadata, SqlStringGenerationContext context)String[]StandardForeignKeyExporter. getSqlCreateStrings(ForeignKey foreignKey, Metadata metadata, SqlStringGenerationContext context)String[]StandardIndexExporter. getSqlCreateStrings(Index index, Metadata metadata, SqlStringGenerationContext context)String[]StandardSequenceExporter. getSqlCreateStrings(Sequence sequence, Metadata metadata, SqlStringGenerationContext context)String[]StandardTableExporter. getSqlCreateStrings(Table table, Metadata metadata, SqlStringGenerationContext context)String[]StandardUniqueKeyExporter. getSqlCreateStrings(Constraint constraint, Metadata metadata, SqlStringGenerationContext context)String[]StandardAuxiliaryDatabaseObjectExporter. getSqlDropStrings(AuxiliaryDatabaseObject object, Metadata metadata, SqlStringGenerationContext context)String[]StandardForeignKeyExporter. getSqlDropStrings(ForeignKey foreignKey, Metadata metadata, SqlStringGenerationContext context)String[]StandardIndexExporter. getSqlDropStrings(Index index, Metadata metadata, SqlStringGenerationContext context)String[]StandardSequenceExporter. getSqlDropStrings(Sequence sequence, Metadata metadata, SqlStringGenerationContext context)String[]StandardTableExporter. getSqlDropStrings(Table table, Metadata metadata, SqlStringGenerationContext context)String[]StandardUniqueKeyExporter. getSqlDropStrings(Constraint constraint, Metadata metadata, SqlStringGenerationContext context)protected voidAbstractSchemaMigrator. migrateTable(Table table, TableInformation tableInformation, Dialect dialect, Metadata metadata, Formatter formatter, ExecutionOptions options, SqlStringGenerationContext sqlStringGenerationContext, GenerationTarget... targets)protected abstract NameSpaceTablesInformationAbstractSchemaMigrator. performTablesMigration(Metadata metadata, DatabaseInformation existingDatabase, ExecutionOptions options, ContributableMatcher contributableInclusionFilter, Dialect dialect, Formatter formatter, Set<String> exportIdentifiers, boolean tryToCreateCatalogs, boolean tryToCreateSchemas, Set<Identifier> exportedCatalogs, Namespace namespace, SqlStringGenerationContext sqlStringGenerationContext, GenerationTarget[] targets)protected NameSpaceTablesInformationGroupedSchemaMigratorImpl. performTablesMigration(Metadata metadata, DatabaseInformation existingDatabase, ExecutionOptions options, ContributableMatcher contributableInclusionFilter, Dialect dialect, Formatter formatter, Set<String> exportIdentifiers, boolean tryToCreateCatalogs, boolean tryToCreateSchemas, Set<Identifier> exportedCatalogs, Namespace namespace, SqlStringGenerationContext sqlStringGenerationContext, GenerationTarget[] targets)protected NameSpaceTablesInformationIndividuallySchemaMigratorImpl. performTablesMigration(Metadata metadata, DatabaseInformation existingDatabase, ExecutionOptions options, ContributableMatcher contributableInclusionFilter, Dialect dialect, Formatter formatter, Set<String> exportIdentifiers, boolean tryToCreateCatalogs, boolean tryToCreateSchemas, Set<Identifier> exportedCatalogs, Namespace namespace, SqlStringGenerationContext sqlStringGenerationContext, GenerationTarget[] targets)voidAbstractSchemaValidator. performValidation(Metadata metadata, DatabaseInformation databaseInformation, ExecutionOptions options, ContributableMatcher contributableInclusionFilter, Dialect dialect)protected voidAbstractSchemaValidator. validateColumnType(Table table, Column column, ColumnInformation columnInformation, Metadata metadata, ExecutionOptions options, Dialect dialect)protected voidAbstractSchemaValidator. validateTable(Table table, TableInformation tableInformation, Metadata metadata, ExecutionOptions options, Dialect dialect)protected abstract voidAbstractSchemaValidator. validateTables(Metadata metadata, DatabaseInformation databaseInformation, ExecutionOptions options, ContributableMatcher contributableInclusionFilter, Dialect dialect, Namespace namespace)protected voidGroupedSchemaValidatorImpl. validateTables(Metadata metadata, DatabaseInformation databaseInformation, ExecutionOptions options, ContributableMatcher contributableInclusionFilter, Dialect dialect, Namespace namespace)protected voidIndividuallySchemaValidatorImpl. validateTables(Metadata metadata, DatabaseInformation databaseInformation, ExecutionOptions options, ContributableMatcher contributableInclusionFilter, Dialect dialect, Namespace namespace) -
Uses of Metadata in org.hibernate.tool.schema.spi
Methods in org.hibernate.tool.schema.spi with parameters of type Metadata Modifier and Type Method Description DelayedDropActionSchemaDropper. buildDelayedAction(Metadata metadata, ExecutionOptions options, ContributableMatcher contributableInclusionFilter, SourceDescriptor sourceDescriptor)Build a delayed Runnable for performing schema dropping.voidSchemaCreator. doCreation(Metadata metadata, ExecutionOptions options, ContributableMatcher contributableInclusionFilter, SourceDescriptor sourceDescriptor, TargetDescriptor targetDescriptor)Perform a schema creation from the indicated source(s) to the indicated target(s).voidSchemaDropper. doDrop(Metadata metadata, ExecutionOptions options, ContributableMatcher contributableInclusionFilter, SourceDescriptor sourceDescriptor, TargetDescriptor targetDescriptor)Perform a schema drop from the indicated source(s) to the indicated target(s).voidSchemaMigrator. doMigration(Metadata metadata, ExecutionOptions options, ContributableMatcher contributableInclusionFilter, TargetDescriptor targetDescriptor)Perform a schema migration (alteration) from the indicated source(s) to the indicated target(s).voidSchemaValidator. doValidation(Metadata metadata, ExecutionOptions options, ContributableMatcher contributableInclusionFilter)Perform the validation of the schema described by MetadataString[]Exporter. getSqlCreateStrings(T exportable, Metadata metadata, SqlStringGenerationContext context)Get the commands needed for creation.String[]Exporter. getSqlDropStrings(T exportable, Metadata metadata, SqlStringGenerationContext context)Get the commands needed for dropping.static Set<SchemaManagementToolCoordinator.ActionGrouping>SchemaManagementToolCoordinator.ActionGrouping. interpret(Metadata metadata, Map<?,?> configurationValues)static voidSchemaManagementToolCoordinator. process(Metadata metadata, ServiceRegistry serviceRegistry, Map<String,Object> configurationValues, DelayedDropRegistry delayedDropRegistry) -
Uses of Metadata in org.hibernate.tuple.entity
Methods in org.hibernate.tuple.entity with parameters of type Metadata Modifier and Type Method Description static BytecodeEnhancementMetadataBytecodeEnhancementMetadataPojoImpl. from(PersistentClass persistentClass, Set<String> identifierAttributeNames, CompositeType nonAggregatedCidMapper, boolean collectionsInDefaultFetchGroupEnabled, Metadata metadata)Static constructor
-