Package | Description |
---|---|
org.hibernate.boot.spi | |
org.hibernate.bytecode.spi |
Package defining bytecode code enhancement (instrumentation) support.
|
org.hibernate.cache.cfg.spi | |
org.hibernate.cache.spi |
Defines the integration aspect of Hibernate's second-level
caching allowing "caching back ends" to be plugged in as
a caching provider.
|
org.hibernate.cache.spi.access |
Defines contracts for transactional and concurrent access to cached
entity and
collection data. |
org.hibernate.cache.spi.entry |
This package defines formats for disassembled state kept in the second level cache.
|
org.hibernate.cache.spi.support |
Package intended for simplifying the worked needed to implement
a caching provider.
|
org.hibernate.cfg.beanvalidation | |
org.hibernate.context.spi |
SPI level contracts around "current session" support.
|
org.hibernate.criterion |
A framework for defining restriction criteria and order criteria.
|
org.hibernate.dialect.function |
A framework for defining database-specific SQL functions
that are available via the dialect.
|
org.hibernate.engine.query.spi |
Defines support for query plans and stored metadata about queries
|
org.hibernate.engine.spi | |
org.hibernate.graph.spi | |
org.hibernate.hql.spi | |
org.hibernate.hql.spi.id |
Support for multi-table update and delete statements via id-tables.
|
org.hibernate.hql.spi.id.cte | |
org.hibernate.hql.spi.id.global | |
org.hibernate.hql.spi.id.inline | |
org.hibernate.hql.spi.id.local | |
org.hibernate.hql.spi.id.persistent |
Package contains an implementation of MultiTableBulkIdStrategy based on the use
of a persistent (ANSI SQL term) table to hold id values.
|
org.hibernate.integrator.spi | |
org.hibernate.jpa | |
org.hibernate.loader |
This package defines functionality for processing JDBC
result sets and returning complex graphs of persistent
objects.
|
org.hibernate.loader.collection |
This package defines collection initializers
|
org.hibernate.loader.collection.plan | |
org.hibernate.loader.criteria |
This package defines the criteria query compiler and loader
|
org.hibernate.loader.custom |
This package defines a framework for custom loaders that accept
handwritten SQL
|
org.hibernate.loader.custom.sql | |
org.hibernate.loader.entity |
This package defines entity loaders
|
org.hibernate.loader.entity.plan |
Support for entity loaders built on top of the
org.hibernate.loader.plan
API to apply entity-graphs |
org.hibernate.loader.hql |
This package defines a loader for the AST-based query parser
|
org.hibernate.loader.plan.build.spi |
Defines the SPI for building a metamodel-driven LoadPlan
|
org.hibernate.metamodel.model.domain.spi | |
org.hibernate.metamodel.spi | |
org.hibernate.persister.collection |
This package abstracts the persistence mechanism for collections.
|
org.hibernate.persister.entity |
This package abstracts persistence mechanisms for
entities, and defines the Hibernate runtime
metamodel.
|
org.hibernate.persister.spi | |
org.hibernate.persister.walking.spi | |
org.hibernate.pretty |
Classes for pretty printing things for exception
and log messages.
|
org.hibernate.property.access.spi |
Defines strategies for accessing the persistent properties of an entity or composite.
|
org.hibernate.query.spi | |
org.hibernate.resource.jdbc.spi | |
org.hibernate.secure.spi | |
org.hibernate.service.spi | |
org.hibernate.spatial.dialect.hana | |
org.hibernate.sql |
This package defines helper classes for rendering SQL
fragments and SQL statements.
|
org.hibernate.sql.ordering.antlr | |
org.hibernate.stat.spi | |
org.hibernate.testing.cache | |
org.hibernate.testing.junit4 | |
org.hibernate.testing.transaction | |
org.hibernate.tuple |
This package defines a runtime metamodel for entities at
the object level and abstracts the differences between
the various entity modes.
|
org.hibernate.tuple.component | |
org.hibernate.tuple.entity | |
org.hibernate.type |
A Hibernate Type is a strategy for mapping a
Java property type to a JDBC type or types.
|
org.hibernate.type.spi | |
org.hibernate.usertype |
Interfaces for user-defined custom types.
|
Modifier and Type | Method and Description |
---|---|
void |
AbstractDelegatingMetadata.initSessionFactory(SessionFactoryImplementor sessionFactory) |
void |
MetadataImplementor.initSessionFactory(SessionFactoryImplementor sessionFactoryImplementor) |
Modifier and Type | Method and Description |
---|---|
ProxyFactory |
ProxyFactoryFactory.buildProxyFactory(SessionFactoryImplementor sessionFactory)
Build a proxy factory specifically for handling runtime
lazy loading.
|
Modifier and Type | Method and Description |
---|---|
SessionFactoryImplementor |
DomainDataRegionBuildingContext.getSessionFactory()
Access to the SessionFactory for which a Region is
being built.
|
Modifier and Type | Method and Description |
---|---|
SessionFactoryImplementor |
CacheImplementor.getSessionFactory() |
Modifier and Type | Method and Description |
---|---|
QueryResultsRegion |
RegionFactory.buildQueryResultsRegion(String regionName,
SessionFactoryImplementor sessionFactory) |
TimestampsRegion |
RegionFactory.buildTimestampsRegion(String regionName,
SessionFactoryImplementor sessionFactory) |
Object |
CacheKeysFactory.createCollectionKey(Object id,
CollectionPersister persister,
SessionFactoryImplementor factory,
String tenantIdentifier) |
Object |
CacheKeysFactory.createEntityKey(Object id,
EntityPersister persister,
SessionFactoryImplementor factory,
String tenantIdentifier) |
Modifier and Type | Method and Description |
---|---|
Object |
CollectionDataAccess.generateCacheKey(Object id,
CollectionPersister collectionDescriptor,
SessionFactoryImplementor factory,
String tenantIdentifier)
To create instances of CollectionCacheKey for this region, Hibernate will invoke this method
exclusively so that generated implementations can generate optimised keys.
|
Object |
EntityDataAccess.generateCacheKey(Object id,
EntityPersister rootEntityDescriptor,
SessionFactoryImplementor factory,
String tenantIdentifier)
To create instances of keys for this region, Hibernate will invoke this method
exclusively so that generated implementations can generate optimised keys.
|
Modifier and Type | Method and Description |
---|---|
Object |
UnstructuredCacheEntry.destructure(Object structured,
SessionFactoryImplementor factory) |
Object |
StructuredCacheEntry.destructure(Object structured,
SessionFactoryImplementor factory) |
Object |
CacheEntryStructure.destructure(Object structured,
SessionFactoryImplementor factory)
Convert the previous structured form of the item back into its item form.
|
Object |
StructuredCollectionCacheEntry.destructure(Object structured,
SessionFactoryImplementor factory) |
Object |
StructuredMapCacheEntry.destructure(Object structured,
SessionFactoryImplementor factory) |
Modifier and Type | Method and Description |
---|---|
SessionFactoryImplementor |
AbstractDomainDataRegion.getSessionFactory() |
Modifier and Type | Method and Description |
---|---|
SessionFactoryImplementor |
ActivationContext.getSessionFactory()
Access the SessionFactory being built to trigger this BV activation
|
Modifier and Type | Method and Description |
---|---|
void |
BeanValidationIntegrator.disintegrate(SessionFactoryImplementor sessionFactory,
SessionFactoryServiceRegistry serviceRegistry) |
void |
BeanValidationIntegrator.integrate(Metadata metadata,
SessionFactoryImplementor sessionFactory,
SessionFactoryServiceRegistry serviceRegistry) |
Constructor and Description |
---|
HibernateTraversableResolver(EntityPersister persister,
ConcurrentHashMap<EntityPersister,Set<String>> associationsPerEntityPersister,
SessionFactoryImplementor factory) |
Modifier and Type | Method and Description |
---|---|
SessionFactoryImplementor |
AbstractCurrentSessionContext.factory()
Access to the SessionFactory
|
Constructor and Description |
---|
AbstractCurrentSessionContext(SessionFactoryImplementor factory) |
Modifier and Type | Method and Description |
---|---|
SessionFactoryImplementor |
CriteriaQuery.getFactory()
Provides access to the SessionFactory
|
Modifier and Type | Method and Description |
---|---|
protected QueryableCollection |
AbstractEmptinessExpression.getQueryableCollection(String entityName,
String propertyName,
SessionFactoryImplementor factory) |
Modifier and Type | Method and Description |
---|---|
protected int |
StandardAnsiSqlAggregationFunctions.AvgFunction.determineJdbcTypeCode(Type firstArgumentType,
SessionFactoryImplementor factory) |
protected String |
StandardAnsiSqlAggregationFunctions.AvgFunction.render(int firstArgumentJdbcType,
String argument,
SessionFactoryImplementor factory) |
String |
TemplateRenderer.render(List args,
SessionFactoryImplementor factory)
The rendering code.
|
protected String |
AnsiTrimFunction.render(TrimFunctionTemplate.Options options,
String trimSource,
SessionFactoryImplementor factory) |
protected abstract String |
TrimFunctionTemplate.render(TrimFunctionTemplate.Options options,
String trimSource,
SessionFactoryImplementor factory) |
String |
NoArgSQLFunction.render(Type argumentType,
List args,
SessionFactoryImplementor factory) |
String |
VarArgsSQLFunction.render(Type firstArgumentType,
List arguments,
SessionFactoryImplementor factory) |
String |
StandardSQLFunction.render(Type firstArgumentType,
List arguments,
SessionFactoryImplementor sessionFactory) |
String |
StaticPrecisionFspTimestampFunction.render(Type argumentType,
List args,
SessionFactoryImplementor factory) |
String |
AbstractAnsiTrimEmulationFunction.render(Type argumentType,
List args,
SessionFactoryImplementor factory) |
String |
SQLFunctionTemplate.render(Type argumentType,
List args,
SessionFactoryImplementor factory) |
String |
DerbyConcatFunction.render(Type argumentType,
List args,
SessionFactoryImplementor factory)
Render the function call as SQL fragment.
|
String |
ConvertFunction.render(Type firstArgumentType,
List args,
SessionFactoryImplementor factory) |
String |
SQLFunction.render(Type firstArgumentType,
List arguments,
SessionFactoryImplementor factory)
Render the function call as SQL fragment.
|
String |
CharIndexFunction.render(Type columnType,
List args,
SessionFactoryImplementor factory) |
String |
PositionSubstringFunction.render(Type firstArgumentType,
List args,
SessionFactoryImplementor factory) |
String |
TrimFunctionTemplate.render(Type firstArgument,
List args,
SessionFactoryImplementor factory) |
String |
StandardJDBCEscapeFunction.render(Type argumentType,
List args,
SessionFactoryImplementor factory) |
String |
StandardAnsiSqlAggregationFunctions.CountFunction.render(Type firstArgumentType,
List arguments,
SessionFactoryImplementor factory) |
String |
StandardAnsiSqlAggregationFunctions.AvgFunction.render(Type firstArgumentType,
List arguments,
SessionFactoryImplementor factory) |
String |
NvlFunction.render(Type argumentType,
List args,
SessionFactoryImplementor factory) |
String |
CastFunction.render(Type columnType,
List args,
SessionFactoryImplementor factory) |
String |
ConditionalParenthesisFunction.render(Type firstArgumentType,
List arguments,
SessionFactoryImplementor sessionFactory) |
Modifier and Type | Method and Description |
---|---|
default CustomLoader |
NativeQueryInterpreter.createCustomLoader(CustomQuery customQuery,
SessionFactoryImplementor sessionFactory)
Deprecated.
This method will be removed in 6.
|
NativeSQLQueryPlan |
NativeQueryInterpreter.createQueryPlan(NativeSQLQuerySpecification specification,
SessionFactoryImplementor sessionFactory)
Creates a new query plan for the specified native query.
|
HQLQueryPlan |
QueryPlanCache.QueryPlanCreator.createQueryPlan(String queryString,
boolean shallow,
Map<String,Filter> enabledFilters,
SessionFactoryImplementor factory) |
NativeQueryInterpreter |
NativeQueryInterpreterInitiator.initiateService(SessionFactoryImplementor sessionFactory,
SessionFactoryOptions sessionFactoryOptions,
ServiceRegistryImplementor registry) |
static ParamLocationRecognizer |
ParamLocationRecognizer.parseLocations(String query,
SessionFactoryImplementor sessionFactory)
Convenience method for creating a param location recognizer and
initiating the parse.
|
Constructor and Description |
---|
FilterQueryPlan(String hql,
String collectionRole,
boolean shallow,
Map enabledFilters,
SessionFactoryImplementor factory)
Constructs a query plan for an HQL filter
|
HQLQueryPlan(String hql,
boolean shallow,
Map<String,Filter> enabledFilters,
SessionFactoryImplementor factory)
Constructs a HQLQueryPlan
|
HQLQueryPlan(String hql,
boolean shallow,
Map<String,Filter> enabledFilters,
SessionFactoryImplementor factory,
EntityGraphQueryHint entityGraphQueryHint) |
HQLQueryPlan(String hql,
String collectionRole,
boolean shallow,
Map<String,Filter> enabledFilters,
SessionFactoryImplementor factory,
EntityGraphQueryHint entityGraphQueryHint) |
QueryPlanCache(SessionFactoryImplementor factory,
QueryPlanCache.QueryPlanCreator queryPlanCreator)
Constructs the QueryPlanCache to be used by the given SessionFactory
|
Modifier and Type | Interface and Description |
---|---|
static interface |
SessionFactoryImplementor.DeserializationResolver<T extends SessionFactoryImplementor>
Contract for resolving this SessionFactory on deserialization
|
Modifier and Type | Class and Description |
---|---|
class |
SessionFactoryDelegatingImpl
Base delegating implementation of the SessionFactory and SessionFactoryImplementor
contracts for intended for easier implementation of SessionFactory.
|
Modifier and Type | Method and Description |
---|---|
protected SessionFactoryImplementor |
SessionFactoryDelegatingImpl.delegate() |
SessionFactoryImplementor |
SharedSessionContractImplementor.getFactory()
Get the creating SessionFactoryImplementor
|
SessionFactoryImplementor |
SessionDelegatorBaseImpl.getFactory() |
SessionFactoryImplementor |
LoadQueryInfluencers.getSessionFactory() |
SessionFactoryImplementor |
CacheImplementor.getSessionFactory()
Deprecated.
|
SessionFactoryImplementor |
SessionDelegatorBaseImpl.getSessionFactory() |
SessionFactoryImplementor |
SessionImplementor.getSessionFactory() |
Modifier and Type | Method and Description |
---|---|
static EntityKey |
EntityKey.deserialize(ObjectInputStream ois,
SessionFactoryImplementor sessionFactory)
Custom deserialization routine used during deserialization of a
Session/PersistenceContext for increased performance.
|
int |
EntityUniqueKey.generateHashCode(SessionFactoryImplementor factory) |
CacheImplementor |
CacheInitiator.initiateService(SessionFactoryImplementor sessionFactory,
SessionFactoryOptions sessionFactoryOptions,
ServiceRegistryImplementor registry) |
void |
QueryParameters.processFilters(String sql,
Map filters,
SessionFactoryImplementor factory) |
void |
QueryParameters.traceParameters(SessionFactoryImplementor factory) |
Constructor and Description |
---|
CollectionEntry(PersistentCollection collection,
SessionFactoryImplementor factory)
For initialized detached collections
|
EntityUniqueKey(String entityName,
String uniqueKeyName,
Object semiResolvedKey,
Type keyType,
EntityMode entityMode,
SessionFactoryImplementor factory) |
LoadQueryInfluencers(SessionFactoryImplementor sessionFactory) |
LoadQueryInfluencers(SessionFactoryImplementor sessionFactory,
Boolean readOnly) |
SessionFactoryDelegatingImpl(SessionFactoryImplementor delegate) |
Modifier and Type | Method and Description |
---|---|
SessionFactoryImplementor |
GraphImplementor.sessionFactory() |
Modifier and Type | Method and Description |
---|---|
FilterTranslator |
QueryTranslatorFactory.createFilterTranslator(String queryIdentifier,
String queryString,
Map filters,
SessionFactoryImplementor factory)
Construct a
FilterTranslator instance capable of translating
an HQL filter string. |
QueryTranslator |
QueryTranslatorFactory.createQueryTranslator(String queryIdentifier,
String queryString,
Map filters,
SessionFactoryImplementor factory,
EntityGraphQueryHint entityGraphQueryHint)
Construct a
QueryTranslator instance capable of translating
an HQL query string. |
Modifier and Type | Method and Description |
---|---|
protected SessionFactoryImplementor |
AbstractTableBasedBulkIdHandler.factory() |
Modifier and Type | Method and Description |
---|---|
MultiTableBulkIdStrategy.DeleteHandler |
MultiTableBulkIdStrategy.buildDeleteHandler(SessionFactoryImplementor factory,
org.hibernate.hql.internal.ast.HqlSqlWalker walker)
Build a handler capable of handling the bulk delete indicated by the given walker.
|
MultiTableBulkIdStrategy.UpdateHandler |
MultiTableBulkIdStrategy.buildUpdateHandler(SessionFactoryImplementor factory,
org.hibernate.hql.internal.ast.HqlSqlWalker walker)
Build a handler capable of handling the bulk update indicated by the given walker.
|
Constructor and Description |
---|
AbstractIdsBulkIdHandler(SessionFactoryImplementor sessionFactory,
org.hibernate.hql.internal.ast.HqlSqlWalker walker) |
AbstractTableBasedBulkIdHandler(SessionFactoryImplementor sessionFactory,
org.hibernate.hql.internal.ast.HqlSqlWalker walker) |
TableBasedDeleteHandlerImpl(SessionFactoryImplementor factory,
org.hibernate.hql.internal.ast.HqlSqlWalker walker,
IdTableInfo idTableInfo) |
TableBasedUpdateHandlerImpl(SessionFactoryImplementor factory,
org.hibernate.hql.internal.ast.HqlSqlWalker walker,
IdTableInfo idTableInfo) |
Modifier and Type | Method and Description |
---|---|
MultiTableBulkIdStrategy.DeleteHandler |
CteValuesListBulkIdStrategy.buildDeleteHandler(SessionFactoryImplementor factory,
org.hibernate.hql.internal.ast.HqlSqlWalker walker) |
MultiTableBulkIdStrategy.UpdateHandler |
CteValuesListBulkIdStrategy.buildUpdateHandler(SessionFactoryImplementor factory,
org.hibernate.hql.internal.ast.HqlSqlWalker walker) |
Constructor and Description |
---|
AbstractCteValuesListBulkIdHandler(SessionFactoryImplementor sessionFactory,
org.hibernate.hql.internal.ast.HqlSqlWalker walker,
String catalog,
String schema) |
CteValuesListDeleteHandlerImpl(SessionFactoryImplementor factory,
org.hibernate.hql.internal.ast.HqlSqlWalker walker) |
CteValuesListDeleteHandlerImpl(SessionFactoryImplementor factory,
org.hibernate.hql.internal.ast.HqlSqlWalker walker,
String catalog,
String schema) |
CteValuesListUpdateHandlerImpl(SessionFactoryImplementor factory,
org.hibernate.hql.internal.ast.HqlSqlWalker walker) |
CteValuesListUpdateHandlerImpl(SessionFactoryImplementor factory,
org.hibernate.hql.internal.ast.HqlSqlWalker walker,
String catalog,
String schema) |
Modifier and Type | Method and Description |
---|---|
MultiTableBulkIdStrategy.DeleteHandler |
GlobalTemporaryTableBulkIdStrategy.buildDeleteHandler(SessionFactoryImplementor factory,
org.hibernate.hql.internal.ast.HqlSqlWalker walker) |
MultiTableBulkIdStrategy.UpdateHandler |
GlobalTemporaryTableBulkIdStrategy.buildUpdateHandler(SessionFactoryImplementor factory,
org.hibernate.hql.internal.ast.HqlSqlWalker walker) |
Modifier and Type | Method and Description |
---|---|
MultiTableBulkIdStrategy.DeleteHandler |
InlineIdsSubSelectValueListBulkIdStrategy.buildDeleteHandler(SessionFactoryImplementor factory,
org.hibernate.hql.internal.ast.HqlSqlWalker walker) |
MultiTableBulkIdStrategy.DeleteHandler |
InlineIdsOrClauseBulkIdStrategy.buildDeleteHandler(SessionFactoryImplementor factory,
org.hibernate.hql.internal.ast.HqlSqlWalker walker) |
MultiTableBulkIdStrategy.DeleteHandler |
InlineIdsInClauseBulkIdStrategy.buildDeleteHandler(SessionFactoryImplementor factory,
org.hibernate.hql.internal.ast.HqlSqlWalker walker) |
MultiTableBulkIdStrategy.UpdateHandler |
InlineIdsSubSelectValueListBulkIdStrategy.buildUpdateHandler(SessionFactoryImplementor factory,
org.hibernate.hql.internal.ast.HqlSqlWalker walker) |
MultiTableBulkIdStrategy.UpdateHandler |
InlineIdsOrClauseBulkIdStrategy.buildUpdateHandler(SessionFactoryImplementor factory,
org.hibernate.hql.internal.ast.HqlSqlWalker walker) |
MultiTableBulkIdStrategy.UpdateHandler |
InlineIdsInClauseBulkIdStrategy.buildUpdateHandler(SessionFactoryImplementor factory,
org.hibernate.hql.internal.ast.HqlSqlWalker walker) |
Constructor and Description |
---|
AbstractInlineIdsBulkIdHandler(SessionFactoryImplementor sessionFactory,
org.hibernate.hql.internal.ast.HqlSqlWalker walker) |
AbstractInlineIdsDeleteHandlerImpl(SessionFactoryImplementor factory,
org.hibernate.hql.internal.ast.HqlSqlWalker walker) |
AbstractInlineIdsUpdateHandlerImpl(SessionFactoryImplementor factory,
org.hibernate.hql.internal.ast.HqlSqlWalker walker) |
InlineIdsIdsInClauseDeleteHandlerImpl(SessionFactoryImplementor factory,
org.hibernate.hql.internal.ast.HqlSqlWalker walker) |
InlineIdsIdsOrClauseDeleteHandlerImpl(SessionFactoryImplementor factory,
org.hibernate.hql.internal.ast.HqlSqlWalker walker) |
InlineIdsInClauseUpdateHandlerImpl(SessionFactoryImplementor factory,
org.hibernate.hql.internal.ast.HqlSqlWalker walker) |
InlineIdsOrClauseUpdateHandlerImpl(SessionFactoryImplementor factory,
org.hibernate.hql.internal.ast.HqlSqlWalker walker) |
InlineIdsSubSelectValuesListDeleteHandlerImpl(SessionFactoryImplementor factory,
org.hibernate.hql.internal.ast.HqlSqlWalker walker) |
InlineIdsSubSelectValuesListUpdateHandlerImpl(SessionFactoryImplementor factory,
org.hibernate.hql.internal.ast.HqlSqlWalker walker) |
Modifier and Type | Method and Description |
---|---|
MultiTableBulkIdStrategy.DeleteHandler |
LocalTemporaryTableBulkIdStrategy.buildDeleteHandler(SessionFactoryImplementor factory,
org.hibernate.hql.internal.ast.HqlSqlWalker walker) |
MultiTableBulkIdStrategy.UpdateHandler |
LocalTemporaryTableBulkIdStrategy.buildUpdateHandler(SessionFactoryImplementor factory,
org.hibernate.hql.internal.ast.HqlSqlWalker walker) |
Modifier and Type | Method and Description |
---|---|
MultiTableBulkIdStrategy.DeleteHandler |
PersistentTableBulkIdStrategy.buildDeleteHandler(SessionFactoryImplementor factory,
org.hibernate.hql.internal.ast.HqlSqlWalker walker) |
MultiTableBulkIdStrategy.UpdateHandler |
PersistentTableBulkIdStrategy.buildUpdateHandler(SessionFactoryImplementor factory,
org.hibernate.hql.internal.ast.HqlSqlWalker walker) |
Constructor and Description |
---|
DeleteHandlerImpl(SessionFactoryImplementor factory,
org.hibernate.hql.internal.ast.HqlSqlWalker walker,
IdTableInfo idTableInfo) |
UpdateHandlerImpl(SessionFactoryImplementor factory,
org.hibernate.hql.internal.ast.HqlSqlWalker walker,
IdTableInfo idTableInfo) |
Modifier and Type | Method and Description |
---|---|
void |
Integrator.disintegrate(SessionFactoryImplementor sessionFactory,
SessionFactoryServiceRegistry serviceRegistry)
Tongue-in-cheek name for a shutdown callback.
|
void |
Integrator.integrate(Metadata metadata,
SessionFactoryImplementor sessionFactory,
SessionFactoryServiceRegistry serviceRegistry)
Perform integration.
|
Modifier and Type | Method and Description |
---|---|
default SessionFactoryImplementor |
HibernateEntityManagerFactory.getSessionFactory()
Deprecated.
The expectation is that SessionFactory implementors also implement EntityManagerFactory; so this call
really should just return
this |
Modifier and Type | Method and Description |
---|---|
protected SessionFactoryImplementor |
JoinWalker.getFactory() |
SessionFactoryImplementor |
Loader.getFactory() |
Modifier and Type | Method and Description |
---|---|
static OuterJoinableAssociation |
OuterJoinableAssociation.createRoot(AssociationType joinableType,
String alias,
SessionFactoryImplementor factory) |
protected String |
Loader.preprocessSQL(String sql,
QueryParameters parameters,
SessionFactoryImplementor sessionFactory,
List<AfterLoadAction> afterLoadActions)
Modify the SQL, adding lock hints and comments, if necessary
|
Constructor and Description |
---|
AbstractEntityJoinWalker(OuterJoinLoadable persister,
SessionFactoryImplementor factory,
LoadQueryInfluencers loadQueryInfluencers) |
AbstractEntityJoinWalker(OuterJoinLoadable persister,
SessionFactoryImplementor factory,
LoadQueryInfluencers loadQueryInfluencers,
String alias) |
BasicLoader(SessionFactoryImplementor factory) |
JoinWalker(SessionFactoryImplementor factory,
LoadQueryInfluencers loadQueryInfluencers) |
Loader(SessionFactoryImplementor factory) |
OuterJoinableAssociation(PropertyPath propertyPath,
AssociationType joinableType,
String lhsAlias,
String[] lhsColumns,
String rhsAlias,
JoinType joinType,
String withClause,
boolean hasRestriction,
SessionFactoryImplementor factory,
Map enabledFilters) |
OuterJoinLoader(SessionFactoryImplementor factory,
LoadQueryInfluencers loadQueryInfluencers) |
Modifier and Type | Method and Description |
---|---|
protected CollectionInitializer |
BatchingCollectionInitializerBuilder.buildNonBatchingLoader(QueryableCollection persister,
SessionFactoryImplementor factory,
LoadQueryInfluencers influencers) |
CollectionInitializer |
BatchingCollectionInitializerBuilder.createBatchingCollectionInitializer(QueryableCollection persister,
int maxBatchSize,
SessionFactoryImplementor factory,
LoadQueryInfluencers influencers)
Builds a batch-fetch capable CollectionInitializer for basic and many-to-many collections (collections with
a dedicated collection table).
|
CollectionInitializer |
BatchingCollectionInitializerBuilder.createBatchingOneToManyInitializer(QueryableCollection persister,
int maxBatchSize,
SessionFactoryImplementor factory,
LoadQueryInfluencers influencers)
Builds a batch-fetch capable CollectionInitializer for one-to-many collections (collections without
a dedicated collection table).
|
CollectionInitializer |
PaddedBatchingCollectionInitializerBuilder.createRealBatchingCollectionInitializer(QueryableCollection persister,
int maxBatchSize,
SessionFactoryImplementor factory,
LoadQueryInfluencers loadQueryInfluencers) |
protected CollectionInitializer |
LegacyBatchingCollectionInitializerBuilder.createRealBatchingCollectionInitializer(QueryableCollection persister,
int maxBatchSize,
SessionFactoryImplementor factory,
LoadQueryInfluencers loadQueryInfluencers) |
protected abstract CollectionInitializer |
BatchingCollectionInitializerBuilder.createRealBatchingCollectionInitializer(QueryableCollection persister,
int maxBatchSize,
SessionFactoryImplementor factory,
LoadQueryInfluencers influencers) |
protected CollectionInitializer |
DynamicBatchingCollectionInitializerBuilder.createRealBatchingCollectionInitializer(QueryableCollection persister,
int maxBatchSize,
SessionFactoryImplementor factory,
LoadQueryInfluencers influencers) |
CollectionInitializer |
PaddedBatchingCollectionInitializerBuilder.createRealBatchingOneToManyInitializer(QueryableCollection persister,
int maxBatchSize,
SessionFactoryImplementor factory,
LoadQueryInfluencers loadQueryInfluencers) |
protected CollectionInitializer |
LegacyBatchingCollectionInitializerBuilder.createRealBatchingOneToManyInitializer(QueryableCollection persister,
int maxBatchSize,
SessionFactoryImplementor factory,
LoadQueryInfluencers loadQueryInfluencers) |
protected abstract CollectionInitializer |
BatchingCollectionInitializerBuilder.createRealBatchingOneToManyInitializer(QueryableCollection persister,
int maxBatchSize,
SessionFactoryImplementor factory,
LoadQueryInfluencers influencers) |
protected CollectionInitializer |
DynamicBatchingCollectionInitializerBuilder.createRealBatchingOneToManyInitializer(QueryableCollection persister,
int maxBatchSize,
SessionFactoryImplementor factory,
LoadQueryInfluencers influencers) |
static BatchingCollectionInitializerBuilder |
BatchingCollectionInitializerBuilder.getBuilder(SessionFactoryImplementor factory) |
Modifier and Type | Method and Description |
---|---|
protected CollectionInitializer |
AbstractBatchingCollectionInitializerBuilder.buildNonBatchingLoader(QueryableCollection persister,
SessionFactoryImplementor factory,
LoadQueryInfluencers influencers) |
CollectionInitializer |
LegacyBatchingCollectionInitializerBuilder.createRealBatchingCollectionInitializer(QueryableCollection persister,
int maxBatchSize,
SessionFactoryImplementor factory,
LoadQueryInfluencers loadQueryInfluencers) |
CollectionInitializer |
LegacyBatchingCollectionInitializerBuilder.createRealBatchingOneToManyInitializer(QueryableCollection persister,
int maxBatchSize,
SessionFactoryImplementor factory,
LoadQueryInfluencers loadQueryInfluencers) |
Modifier and Type | Method and Description |
---|---|
SessionFactoryImplementor |
CriteriaQueryTranslator.getFactory() |
Constructor and Description |
---|
CriteriaJoinWalker(OuterJoinLoadable persister,
CriteriaQueryTranslator translator,
SessionFactoryImplementor factory,
org.hibernate.internal.CriteriaImpl criteria,
String rootEntityName,
LoadQueryInfluencers loadQueryInfluencers) |
CriteriaJoinWalker(OuterJoinLoadable persister,
CriteriaQueryTranslator translator,
SessionFactoryImplementor factory,
org.hibernate.internal.CriteriaImpl criteria,
String rootEntityName,
LoadQueryInfluencers loadQueryInfluencers,
String alias) |
CriteriaLoader(OuterJoinLoadable persister,
SessionFactoryImplementor factory,
org.hibernate.internal.CriteriaImpl criteria,
String rootEntityName,
LoadQueryInfluencers loadQueryInfluencers) |
CriteriaQueryTranslator(SessionFactoryImplementor factory,
org.hibernate.internal.CriteriaImpl criteria,
String rootEntityName,
String rootSQLAlias) |
CriteriaQueryTranslator(SessionFactoryImplementor factory,
org.hibernate.internal.CriteriaImpl criteria,
String rootEntityName,
String rootSQLAlias,
CriteriaQuery outerQuery) |
Constructor and Description |
---|
CustomLoader(CustomQuery customQuery,
SessionFactoryImplementor factory) |
Constructor and Description |
---|
ParameterSubstitutionRecognizer(SessionFactoryImplementor factory) |
SQLCustomQuery(String sqlQuery,
NativeSQLQueryReturn[] queryReturns,
Collection additionalQuerySpaces,
SessionFactoryImplementor factory) |
SQLQueryParser(String queryString,
org.hibernate.loader.custom.sql.SQLQueryParser.ParserContext context,
SessionFactoryImplementor factory) |
SQLQueryReturnProcessor(NativeSQLQueryReturn[] queryReturns,
SessionFactoryImplementor factory) |
Modifier and Type | Method and Description |
---|---|
protected abstract UniqueEntityLoader |
BatchingEntityLoaderBuilder.buildBatchingLoader(OuterJoinLoadable persister,
int batchSize,
LockMode lockMode,
SessionFactoryImplementor factory,
LoadQueryInfluencers influencers) |
protected abstract UniqueEntityLoader |
BatchingEntityLoaderBuilder.buildBatchingLoader(OuterJoinLoadable persister,
int batchSize,
LockOptions lockOptions,
SessionFactoryImplementor factory,
LoadQueryInfluencers influencers) |
UniqueEntityLoader |
BatchingEntityLoaderBuilder.buildLoader(OuterJoinLoadable persister,
int batchSize,
LockMode lockMode,
SessionFactoryImplementor factory,
LoadQueryInfluencers influencers)
Builds a batch-fetch capable loader based on the given persister, lock-mode, etc.
|
UniqueEntityLoader |
BatchingEntityLoaderBuilder.buildLoader(OuterJoinLoadable persister,
int batchSize,
LockOptions lockOptions,
SessionFactoryImplementor factory,
LoadQueryInfluencers influencers)
Builds a batch-fetch capable loader based on the given persister, lock-options, etc.
|
protected UniqueEntityLoader |
BatchingEntityLoaderBuilder.buildNonBatchingLoader(OuterJoinLoadable persister,
LockMode lockMode,
SessionFactoryImplementor factory,
LoadQueryInfluencers influencers) |
protected UniqueEntityLoader |
BatchingEntityLoaderBuilder.buildNonBatchingLoader(OuterJoinLoadable persister,
LockOptions lockOptions,
SessionFactoryImplementor factory,
LoadQueryInfluencers influencers) |
static BatchingEntityLoaderBuilder |
BatchingEntityLoaderBuilder.getBuilder(SessionFactoryImplementor factory) |
Constructor and Description |
---|
AbstractLoadPlanBasedEntityLoader(OuterJoinLoadable entityPersister,
SessionFactoryImplementor factory,
org.hibernate.loader.plan.exec.internal.EntityLoadQueryDetails entityLoaderQueryDetailsTemplate,
Type uniqueKeyType,
QueryBuildingParameters buildingParameters) |
AbstractLoadPlanBasedEntityLoader(OuterJoinLoadable entityPersister,
SessionFactoryImplementor factory,
org.hibernate.loader.plan.exec.internal.EntityLoadQueryDetails entityLoaderQueryDetailsTemplate,
Type uniqueKeyType,
QueryBuildingParameters buildingParameters,
ResultSetProcessorResolver resultSetProcessorResolver) |
AbstractLoadPlanBasedEntityLoader(OuterJoinLoadable entityPersister,
SessionFactoryImplementor factory,
String[] uniqueKeyColumnNames,
Type uniqueKeyType,
QueryBuildingParameters buildingParameters) |
AbstractLoadPlanBasedEntityLoader(OuterJoinLoadable entityPersister,
SessionFactoryImplementor factory,
String[] uniqueKeyColumnNames,
Type uniqueKeyType,
QueryBuildingParameters buildingParameters,
ResultSetProcessorResolver resultSetProcessorResolver) |
DynamicBatchingEntityLoader(OuterJoinLoadable persister,
int maxBatchSize,
LockOptions lockOptions,
SessionFactoryImplementor factory,
LoadQueryInfluencers loadQueryInfluencers) |
LegacyBatchingEntityLoader(OuterJoinLoadable persister,
int maxBatchSize,
LockMode lockMode,
LockOptions lockOptions,
SessionFactoryImplementor factory,
LoadQueryInfluencers loadQueryInfluencers) |
LegacyBatchingEntityLoader(OuterJoinLoadable persister,
int maxBatchSize,
LockMode lockMode,
SessionFactoryImplementor factory,
LoadQueryInfluencers loadQueryInfluencers) |
LegacyBatchingEntityLoader(OuterJoinLoadable persister,
int maxBatchSize,
LockOptions lockOptions,
SessionFactoryImplementor factory,
LoadQueryInfluencers loadQueryInfluencers) |
PaddedBatchingEntityLoader(OuterJoinLoadable persister,
int maxBatchSize,
LockOptions lockOptions,
SessionFactoryImplementor factory,
LoadQueryInfluencers loadQueryInfluencers) |
Constructor and Description |
---|
QueryLoader(org.hibernate.hql.internal.ast.QueryTranslatorImpl queryTranslator,
SessionFactoryImplementor factory,
org.hibernate.hql.internal.ast.tree.SelectClause selectClause)
Creates a new Loader implementation.
|
Modifier and Type | Method and Description |
---|---|
SessionFactoryImplementor |
LoadPlanBuildingContext.getSessionFactory()
Access to the SessionFactory
|
SessionFactoryImplementor |
ExpandingQuerySpaces.getSessionFactory()
Gets the session factory.
|
Modifier and Type | Method and Description |
---|---|
static EntityPersister |
DomainModelHelper.resolveEntityPersister(EntityTypeDescriptor<?> entityType,
SessionFactoryImplementor sessionFactory) |
static <S> ManagedTypeDescriptor<S> |
DomainModelHelper.resolveSubType(ManagedTypeDescriptor<? super S> baseType,
Class<S> subTypeClass,
SessionFactoryImplementor sessionFactory) |
static <T,S extends T> |
DomainModelHelper.resolveSubType(ManagedTypeDescriptor<T> baseType,
String subTypeName,
SessionFactoryImplementor sessionFactory) |
Modifier and Type | Method and Description |
---|---|
SessionFactoryImplementor |
MetamodelImplementor.getSessionFactory() |
Modifier and Type | Method and Description |
---|---|
SessionFactoryImplementor |
CollectionPersister.getFactory() |
SessionFactoryImplementor |
AbstractCollectionPersister.getFactory() |
Modifier and Type | Method and Description |
---|---|
SessionFactoryImplementor |
AbstractEntityPersister.getFactory() |
SessionFactoryImplementor |
EntityPersister.getFactory()
Return the SessionFactory to which this persister "belongs".
|
Modifier and Type | Method and Description |
---|---|
Object |
DiscriminatorType.deepCopy(Object value,
SessionFactoryImplementor factory) |
EntityPersister |
AbstractEntityPersister.getSubclassEntityPersister(Object instance,
SessionFactoryImplementor factory) |
EntityPersister |
EntityPersister.getSubclassEntityPersister(Object instance,
SessionFactoryImplementor factory)
A request has already identified the entity-name of this persister as the mapping for the given instance.
|
protected static String |
AbstractEntityPersister.getTemplateFromString(String string,
SessionFactoryImplementor factory) |
String |
DiscriminatorType.toLoggableString(Object value,
SessionFactoryImplementor factory) |
Modifier and Type | Method and Description |
---|---|
SessionFactoryImplementor |
PersisterCreationContext.getSessionFactory() |
Constructor and Description |
---|
MetamodelGraphWalker(AssociationVisitationStrategy strategy,
SessionFactoryImplementor factory) |
Modifier and Type | Method and Description |
---|---|
static String |
MessageHelper.collectionInfoString(CollectionPersister persister,
Serializable[] ids,
SessionFactoryImplementor factory)
Generate an info message string relating to a series of managed
collections.
|
static String |
MessageHelper.collectionInfoString(CollectionPersister persister,
Serializable id,
SessionFactoryImplementor factory)
Generate an info message string relating to a particular managed
collection.
|
static String |
MessageHelper.infoString(EntityPersister persister,
Object id,
SessionFactoryImplementor factory)
Generate an info message string relating to a particular entity.
|
static String |
MessageHelper.infoString(EntityPersister persister,
Object id,
Type identifierType,
SessionFactoryImplementor factory)
Generate an info message string relating to a particular entity,.
|
static String |
MessageHelper.infoString(EntityPersister persister,
Serializable[] ids,
SessionFactoryImplementor factory)
Generate an info message string relating to a series of entities.
|
Modifier and Type | Method and Description |
---|---|
void |
Setter.set(Object target,
Object value,
SessionFactoryImplementor factory)
Set the property value from the given instance
|
void |
SetterMethodImpl.set(Object target,
Object value,
SessionFactoryImplementor factory) |
void |
SetterFieldImpl.set(Object target,
Object value,
SessionFactoryImplementor factory) |
void |
EnhancedSetterImpl.set(Object target,
Object value,
SessionFactoryImplementor factory) |
Modifier and Type | Method and Description |
---|---|
SessionFactoryImplementor |
QueryProducerImplementor.getFactory() |
Modifier and Type | Method and Description |
---|---|
SessionFactoryImplementor |
JdbcSessionContext.getSessionFactory()
Retrieve the session factory for this environment.
|
Modifier and Type | Method and Description |
---|---|
void |
JaccIntegrator.disintegrate(SessionFactoryImplementor sessionFactory,
SessionFactoryServiceRegistry serviceRegistry)
Deprecated.
|
void |
JaccIntegrator.integrate(Metadata metadata,
SessionFactoryImplementor sessionFactory,
SessionFactoryServiceRegistry serviceRegistry)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
SessionFactoryImplementor |
SessionFactoryServiceInitiatorContext.getSessionFactory() |
Modifier and Type | Method and Description |
---|---|
SessionFactoryServiceRegistry |
SessionFactoryServiceRegistryFactory.buildServiceRegistry(SessionFactoryImplementor sessionFactory,
SessionFactoryOptions sessionFactoryOptions)
Create the registry.
|
R |
SessionFactoryServiceInitiator.initiateService(SessionFactoryImplementor sessionFactory,
SessionFactoryOptions sessionFactoryOptions,
ServiceRegistryImplementor registry)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
String |
HANASpatialFunction.render(Type firstArgumentType,
List arguments,
SessionFactoryImplementor sessionFactory) |
Modifier and Type | Method and Description |
---|---|
static String |
Template.renderOrderByStringTemplate(String orderByFragment,
ColumnMapper columnMapper,
SessionFactoryImplementor sessionFactory,
Dialect dialect,
SQLFunctionRegistry functionRegistry) |
static OrderByTranslation |
Template.translateOrderBy(String orderByFragment,
ColumnMapper columnMapper,
SessionFactoryImplementor sessionFactory,
Dialect dialect,
SQLFunctionRegistry functionRegistry)
Performs order-by template rendering allowing
column mapping . |
Modifier and Type | Method and Description |
---|---|
SessionFactoryImplementor |
TranslationContext.getSessionFactory()
Retrieves the session factory for this context.
|
Constructor and Description |
---|
OrderByFragmentRenderer(SessionFactoryImplementor sessionFactory) |
Modifier and Type | Method and Description |
---|---|
StatisticsImplementor |
StatisticsFactory.buildStatistics(SessionFactoryImplementor sessionFactory) |
Modifier and Type | Method and Description |
---|---|
protected StorageAccess |
CachingRegionFactory.createQueryResultsRegionStorageAccess(String regionName,
SessionFactoryImplementor sessionFactory) |
protected StorageAccess |
CachingRegionFactory.createTimestampsRegionStorageAccess(String regionName,
SessionFactoryImplementor sessionFactory) |
Modifier and Type | Method and Description |
---|---|
protected SessionFactoryImplementor |
BaseCoreFunctionalTestCase.sessionFactory() |
protected SessionFactoryImplementor |
BaseNonConfigCoreFunctionalTestCase.sessionFactory() |
Modifier and Type | Method and Description |
---|---|
protected void |
BaseNonConfigCoreFunctionalTestCase.afterSessionFactoryBuilt(SessionFactoryImplementor sessionFactory) |
Modifier and Type | Method and Description |
---|---|
static <R> R |
TransactionUtil2.fromSession(SessionFactoryImplementor sfi,
Function<SessionImplementor,R> action) |
static <R> R |
TransactionUtil2.fromTransaction(SessionFactoryImplementor factory,
Function<SessionImplementor,R> action) |
static void |
TransactionUtil2.inSession(SessionFactoryImplementor sfi,
Consumer<SessionImplementor> action) |
static void |
TransactionUtil2.inStatelessSession(SessionFactoryImplementor sfi,
Consumer<StatelessSession> action) |
static void |
TransactionUtil2.inStatelessTransaction(SessionFactoryImplementor factory,
Consumer<StatelessSession> action) |
static void |
TransactionUtil2.inTransaction(SessionFactoryImplementor factory,
Consumer<SessionImplementor> action) |
Modifier and Type | Method and Description |
---|---|
protected SessionFactoryImplementor |
AbstractNonIdentifierAttribute.sessionFactory() |
Modifier and Type | Method and Description |
---|---|
static NonIdentifierAttribute |
PropertyFactory.buildEntityBasedAttribute(EntityPersister persister,
SessionFactoryImplementor sessionFactory,
int attributeNumber,
Property property,
boolean lazyAvailable)
Generate a non-identifier (and non-version) attribute based on the given mapped property from the given entity
|
static VersionProperty |
PropertyFactory.buildVersionProperty(EntityPersister persister,
SessionFactoryImplementor sessionFactory,
int attributeNumber,
Property property,
boolean lazyAvailable)
Generates a VersionProperty representation for an entity mapping given its
version mapping Property.
|
Constructor and Description |
---|
AbstractNonIdentifierAttribute(AttributeSource source,
SessionFactoryImplementor sessionFactory,
int attributeNumber,
String attributeName,
Type attributeType,
BaselineAttributeInformation attributeInformation) |
Modifier and Type | Method and Description |
---|---|
void |
ComponentTuplizer.setParent(Object component,
Object parent,
SessionFactoryImplementor factory)
Set the value of the parent property.
|
void |
PojoComponentTuplizer.setParent(Object component,
Object parent,
SessionFactoryImplementor factory) |
void |
AbstractComponentTuplizer.setParent(Object component,
Object parent,
SessionFactoryImplementor factory) |
Constructor and Description |
---|
AbstractCompositionAttribute(AttributeSource source,
SessionFactoryImplementor sessionFactory,
int entityBasedAttributeNumber,
String attributeName,
CompositeType attributeType,
int columnStartPosition,
BaselineAttributeInformation baselineInfo) |
CompositeBasedAssociationAttribute(AbstractCompositionAttribute source,
SessionFactoryImplementor factory,
int entityBasedAttributeNumber,
String attributeName,
AssociationType attributeType,
BaselineAttributeInformation baselineInfo,
int subAttributeNumber,
AssociationKey associationKey) |
CompositeBasedBasicAttribute(AttributeSource source,
SessionFactoryImplementor sessionFactory,
int attributeNumber,
String attributeName,
Type attributeType,
BaselineAttributeInformation baselineInfo) |
CompositionBasedCompositionAttribute(AbstractCompositionAttribute source,
SessionFactoryImplementor sessionFactory,
int entityBasedAttributeNumber,
String attributeName,
CompositeType attributeType,
int columnStartPosition,
BaselineAttributeInformation baselineInfo) |
Modifier and Type | Method and Description |
---|---|
protected SessionFactoryImplementor |
AbstractEntityTuplizer.getFactory() |
SessionFactoryImplementor |
EntityMetamodel.getSessionFactory() |
Modifier and Type | Method and Description |
---|---|
static org.hibernate.tuple.entity.EntityMetamodel.InDatabaseValueGenerationStrategyImpl |
EntityMetamodel.create(SessionFactoryImplementor sessionFactoryImplementor,
Property mappingProperty,
ValueGeneration valueGeneration) |
String |
PojoEntityTuplizer.determineConcreteSubclassEntityName(Object entityInstance,
SessionFactoryImplementor factory) |
String |
EntityTuplizer.determineConcreteSubclassEntityName(Object entityInstance,
SessionFactoryImplementor factory)
Given an entity instance, determine the most appropriate (most targeted) entity-name which represents it.
|
String |
DynamicMapEntityTuplizer.determineConcreteSubclassEntityName(Object entityInstance,
SessionFactoryImplementor factory) |
Modifier and Type | Method and Description |
---|---|
SessionFactoryImplementor |
TypeFactory.resolveSessionFactory()
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
Object |
AbstractStandardBasicType.deepCopy(Object value,
SessionFactoryImplementor factory) |
Object |
AnyType.deepCopy(Object value,
SessionFactoryImplementor factory) |
Object |
CollectionType.deepCopy(Object value,
SessionFactoryImplementor factory) |
Object |
MetaType.deepCopy(Object value,
SessionFactoryImplementor factory) |
Object |
Type.deepCopy(Object value,
SessionFactoryImplementor factory)
Return a deep copy of the persistent state, stopping at entities and at collections.
|
Object |
ComponentType.deepCopy(Object component,
SessionFactoryImplementor factory) |
Object |
CustomType.deepCopy(Object value,
SessionFactoryImplementor factory) |
Object |
CompositeCustomType.deepCopy(Object value,
SessionFactoryImplementor factory) |
Object |
EntityType.deepCopy(Object value,
SessionFactoryImplementor factory) |
String |
AnyType.getAssociatedEntityName(SessionFactoryImplementor factory) |
String |
CollectionType.getAssociatedEntityName(SessionFactoryImplementor factory) |
String |
AssociationType.getAssociatedEntityName(SessionFactoryImplementor factory)
Get the entity name of the associated entity
|
String |
EntityType.getAssociatedEntityName(SessionFactoryImplementor factory)
The name of the associated entity.
|
protected EntityPersister |
EntityType.getAssociatedEntityPersister(SessionFactoryImplementor factory) |
Joinable |
AnyType.getAssociatedJoinable(SessionFactoryImplementor factory) |
Joinable |
CollectionType.getAssociatedJoinable(SessionFactoryImplementor factory) |
Joinable |
AssociationType.getAssociatedJoinable(SessionFactoryImplementor factory)
Get the "persister" for this association - a class or
collection persister
|
Joinable |
EntityType.getAssociatedJoinable(SessionFactoryImplementor factory)
Retrieves the
Joinable defining the associated entity. |
Type |
CollectionType.getElementType(SessionFactoryImplementor factory)
Get the Hibernate type of the collection elements
|
int |
AbstractStandardBasicType.getHashCode(Object x,
SessionFactoryImplementor factory) |
int |
AbstractType.getHashCode(Object x,
SessionFactoryImplementor factory) |
int |
Type.getHashCode(Object x,
SessionFactoryImplementor factory)
Get a hash code, consistent with persistence "equality".
|
int |
ComponentType.getHashCode(Object x,
SessionFactoryImplementor factory) |
int |
EntityType.getHashCode(Object x,
SessionFactoryImplementor factory) |
String |
AnyType.getOnCondition(String alias,
SessionFactoryImplementor factory,
Map enabledFilters) |
String |
CollectionType.getOnCondition(String alias,
SessionFactoryImplementor factory,
Map enabledFilters) |
String |
AssociationType.getOnCondition(String alias,
SessionFactoryImplementor factory,
Map enabledFilters)
Get the "filtering" SQL fragment that is applied in the
SQL on clause, in addition to the usual join condition
|
String |
EntityType.getOnCondition(String alias,
SessionFactoryImplementor factory,
Map enabledFilters) |
String |
AnyType.getOnCondition(String alias,
SessionFactoryImplementor factory,
Map enabledFilters,
Set<String> treatAsDeclarations) |
String |
CollectionType.getOnCondition(String alias,
SessionFactoryImplementor factory,
Map enabledFilters,
Set<String> treatAsDeclarations) |
String |
AssociationType.getOnCondition(String alias,
SessionFactoryImplementor factory,
Map enabledFilters,
Set<String> treatAsDeclarations)
Get the "filtering" SQL fragment that is applied in the
SQL on clause, in addition to the usual join condition
|
String |
EntityType.getOnCondition(String alias,
SessionFactoryImplementor factory,
Map enabledFilters,
Set<String> treatAsDeclarations) |
Type |
AbstractStandardBasicType.getSemiResolvedType(SessionFactoryImplementor factory) |
Type |
AbstractType.getSemiResolvedType(SessionFactoryImplementor factory) |
Type |
Type.getSemiResolvedType(SessionFactoryImplementor factory)
As part of 2-phase loading, when we perform resolving what is the resolved type for this type? Generally
speaking the type and its semi-resolved type will be the same.
|
Type |
EntityType.getSemiResolvedType(SessionFactoryImplementor factory) |
boolean |
AbstractStandardBasicType.isEqual(Object x,
Object y,
SessionFactoryImplementor factory) |
boolean |
AbstractType.isEqual(Object x,
Object y,
SessionFactoryImplementor factory) |
boolean |
Type.isEqual(Object x,
Object y,
SessionFactoryImplementor factory)
Compare two instances of the class mapped by this type for persistence "equality" (equality of persistent
state).
|
boolean |
ComponentType.isEqual(Object x,
Object y,
SessionFactoryImplementor factory) |
boolean |
EntityType.isEqual(Object x,
Object y,
SessionFactoryImplementor factory) |
protected String |
CollectionType.renderLoggableString(Object value,
SessionFactoryImplementor factory) |
protected String |
CustomCollectionType.renderLoggableString(Object value,
SessionFactoryImplementor factory) |
String |
EnumType.toLoggableString(Object value,
SessionFactoryImplementor factory) |
String |
AbstractStandardBasicType.toLoggableString(Object value,
SessionFactoryImplementor factory) |
String |
AnyType.toLoggableString(Object value,
SessionFactoryImplementor factory) |
String |
CollectionType.toLoggableString(Object value,
SessionFactoryImplementor factory) |
String |
MetaType.toLoggableString(Object value,
SessionFactoryImplementor factory) |
String |
ArrayType.toLoggableString(Object value,
SessionFactoryImplementor factory) |
String |
Type.toLoggableString(Object value,
SessionFactoryImplementor factory)
Generate a representation of the value for logging purposes.
|
String |
ComponentType.toLoggableString(Object value,
SessionFactoryImplementor factory) |
String |
CustomType.toLoggableString(Object value,
SessionFactoryImplementor factory) |
String |
CompositeCustomType.toLoggableString(Object value,
SessionFactoryImplementor factory) |
String |
EntityType.toLoggableString(Object value,
SessionFactoryImplementor factory)
Generate a loggable representation of an instance of the value mapped by this type.
|
String |
MetaType.toXMLString(Object value,
SessionFactoryImplementor factory) |
String |
CustomType.toXMLString(Object value,
SessionFactoryImplementor factory) |
Modifier and Type | Method and Description |
---|---|
SessionFactoryImplementor |
TypeConfiguration.getSessionFactory()
Obtain the SessionFactory currently scoping the TypeConfiguration.
|
Modifier and Type | Method and Description |
---|---|
MetamodelImplementor |
TypeConfiguration.scope(SessionFactoryImplementor sessionFactory) |
Modifier and Type | Method and Description |
---|---|
String |
LoggableUserType.toLoggableString(Object value,
SessionFactoryImplementor factory)
Generate a loggable string representation of the collection (value).
|
Copyright © 2001-2022 Red Hat, Inc. All Rights Reserved.