Uses of Interface
org.hibernate.Session.LockRequest
-
Packages that use Session.LockRequest Package Description org.hibernate This package defines the central Hibernate APIs, beginning withSessionFactory
, which represents an instance of Hibernate at runtime and is the source of new instances ofSession
andStatelessSession
, the most important APIs exposing persistence-related operations for entities.org.hibernate.engine.spi This package defines some central internal SPI abstractions used throughout the implementation of Hibernate.org.hibernate.internal An internal package containing implementations of central Hibernate APIs, mostly defined inorg.hibernate
. -
-
Uses of Session.LockRequest in org.hibernate
Methods in org.hibernate that return Session.LockRequest Modifier and Type Method Description Session.LockRequest
Session. buildLockRequest(LockOptions lockOptions)
Deprecated.Session.LockRequest
Session.LockRequest. setLockMode(LockMode lockMode)
Deprecated.Specify theLockMode
to be used.default Session.LockRequest
Session.LockRequest. setLockScope(PessimisticLockScope scope)
Deprecated.Set thePessimisticLockScope
, which determines if locking extends to owned collections and associated entities.Session.LockRequest
Session.LockRequest. setScope(boolean scope)
Deprecated.Session.LockRequest
Session.LockRequest. setTimeOut(int timeout)
Deprecated.Specify the pessimistic lock timeout. -
Uses of Session.LockRequest in org.hibernate.engine.spi
Methods in org.hibernate.engine.spi that return Session.LockRequest Modifier and Type Method Description Session.LockRequest
SessionDelegatorBaseImpl. buildLockRequest(LockOptions lockOptions)
Deprecated.Session.LockRequest
SessionLazyDelegator. buildLockRequest(LockOptions lockOptions)
Deprecated. -
Uses of Session.LockRequest in org.hibernate.internal
Methods in org.hibernate.internal that return Session.LockRequest Modifier and Type Method Description Session.LockRequest
SessionImpl. buildLockRequest(LockOptions lockOptions)
Deprecated.
-