Uses of Interface
org.hibernate.NaturalIdLoadAccess
-
Packages that use NaturalIdLoadAccess Package Description org.hibernate org.hibernate.engine.spi -
-
Uses of NaturalIdLoadAccess in org.hibernate
Methods in org.hibernate that return NaturalIdLoadAccess Modifier and Type Method Description <T> NaturalIdLoadAccess<T>
Session. byNaturalId(java.lang.Class<T> entityClass)
Create aNaturalIdLoadAccess
instance to retrieve the specified entity by its natural id.NaturalIdLoadAccess
Session. byNaturalId(java.lang.String entityName)
Create aNaturalIdLoadAccess
instance to retrieve the specified entity by its natural id.NaturalIdLoadAccess<T>
NaturalIdLoadAccess. setSynchronizationEnabled(boolean enabled)
For entities with mutable natural ids, should Hibernate perform "synchronization" prior to performing lookups? The default is to perform "synchronization" (for correctness).NaturalIdLoadAccess<T>
NaturalIdLoadAccess. using(java.lang.String attributeName, java.lang.Object value)
Add a NaturalId attribute value.NaturalIdLoadAccess<T>
NaturalIdLoadAccess. with(LockOptions lockOptions)
Specify theLockOptions
to use when retrieving the entity. -
Uses of NaturalIdLoadAccess in org.hibernate.engine.spi
Methods in org.hibernate.engine.spi that return NaturalIdLoadAccess Modifier and Type Method Description <T> NaturalIdLoadAccess<T>
SessionDelegatorBaseImpl. byNaturalId(java.lang.Class<T> entityClass)
NaturalIdLoadAccess
SessionDelegatorBaseImpl. byNaturalId(java.lang.String entityName)
<T> NaturalIdLoadAccess<T>
SessionLazyDelegator. byNaturalId(java.lang.Class<T> entityClass)
NaturalIdLoadAccess
SessionLazyDelegator. byNaturalId(java.lang.String entityName)
-