Uses of Interface
org.hibernate.MultiIdentifierLoadAccess
Packages that use MultiIdentifierLoadAccess
Package
Description
This package defines the central Hibernate APIs, beginning with
SessionFactory
, which represents an instance of
Hibernate at runtime and is the source of new instances of
Session
and StatelessSession
,
the most important APIs exposing persistence-related operations for
entities.This package defines some central internal SPI abstractions
used throughout the implementation of Hibernate.
-
Uses of MultiIdentifierLoadAccess in org.hibernate
Methods in org.hibernate that return MultiIdentifierLoadAccessModifier and TypeMethodDescription<T> MultiIdentifierLoadAccess
<T> Session.byMultipleIds
(Class<T> entityClass) Deprecated, for removal: This API element is subject to removal in a future version.<T> MultiIdentifierLoadAccess
<T> Session.byMultipleIds
(String entityName) Deprecated, for removal: This API element is subject to removal in a future version.MultiIdentifierLoadAccess.disableFetchProfile
(String profileName) Deprecated, for removal: This API element is subject to removal in a future version.Customize the associations fetched by specifying a fetch profile that should be disabled during this operation.MultiIdentifierLoadAccess.enableFetchProfile
(String profileName) Deprecated, for removal: This API element is subject to removal in a future version.Customize the associations fetched by specifying a fetch profile that should be enabled during this operation.MultiIdentifierLoadAccess.enableOrderedReturn
(boolean enabled) Deprecated, for removal: This API element is subject to removal in a future version.Should the returned list of entity instances be ordered, with the position of an entity instance determined by the position of its identifier in the list if ids passed tomultiLoad(K...)
?MultiIdentifierLoadAccess.enableReturnOfDeletedEntities
(boolean enabled) Deprecated, for removal: This API element is subject to removal in a future version.ShouldmultiLoad(K...)
return entity instances that have been marked for removal in the current session, but not yet deleted in the database?MultiIdentifierLoadAccess.enableSessionCheck
(boolean enabled) Deprecated, for removal: This API element is subject to removal in a future version.Specifies whether the ids of managed entity instances already cached in the current persistence context should be excluded from the list of ids sent to the database.default MultiIdentifierLoadAccess
<T> MultiIdentifierLoadAccess.with
(EntityGraph<T> graph) Deprecated.MultiIdentifierLoadAccess.with
(EntityGraph<T> graph, GraphSemantic semantic) Deprecated, for removal: This API element is subject to removal in a future version.Customize the associations fetched by specifying an entity graph, and how it should be interpreted.Deprecated, for removal: This API element is subject to removal in a future version.Specify the timeout to use when querying the database.Deprecated, for removal: This API element is subject to removal in a future version.Specify theCacheMode
to use when obtaining an entity.default MultiIdentifierLoadAccess
<T> Deprecated, for removal: This API element is subject to removal in a future version.Specify the lock mode to use when querying the database.MultiIdentifierLoadAccess.with
(LockMode lockMode, PessimisticLockScope lockScope) Deprecated, for removal: This API element is subject to removal in a future version.Specify the lock mode to use when querying the database.MultiIdentifierLoadAccess.with
(LockOptions lockOptions) Deprecated, for removal: This API element is subject to removal in a future version.MultiIdentifierLoadAccess.withBatchSize
(int batchSize) Deprecated, for removal: This API element is subject to removal in a future version.Specify a batch size, that is, how many entities should be fetched in each request to the database.default MultiIdentifierLoadAccess
<T> MultiIdentifierLoadAccess.withFetchGraph
(EntityGraph<T> graph) Deprecated, for removal: This API element is subject to removal in a future version.Override the associations fetched by default by specifying the complete list of associations to be fetched as an entity graph.default MultiIdentifierLoadAccess
<T> MultiIdentifierLoadAccess.withLoadGraph
(EntityGraph<T> graph) Deprecated, for removal: This API element is subject to removal in a future version.Augment the associations fetched by default by specifying a list of additional associations to be fetched as an entity graph.MultiIdentifierLoadAccess.withReadOnly
(boolean readOnly) Deprecated, for removal: This API element is subject to removal in a future version.Specify whether the entities should be loaded in read-only mode. -
Uses of MultiIdentifierLoadAccess in org.hibernate.engine.spi
Methods in org.hibernate.engine.spi that return MultiIdentifierLoadAccessModifier and TypeMethodDescription<T> MultiIdentifierLoadAccess
<T> SessionDelegatorBaseImpl.byMultipleIds
(Class<T> entityClass) <T> MultiIdentifierLoadAccess
<T> SessionDelegatorBaseImpl.byMultipleIds
(String entityName) <T> MultiIdentifierLoadAccess
<T> SessionLazyDelegator.byMultipleIds
(Class<T> entityClass) <T> MultiIdentifierLoadAccess
<T> SessionLazyDelegator.byMultipleIds
(String entityName)
Session.findMultiple(Class, List, FindOption...)
instead.