Package org.hibernate.action.internal
Class EntityVerifyVersionProcess
- java.lang.Object
-
- org.hibernate.action.internal.EntityVerifyVersionProcess
-
- All Implemented Interfaces:
BeforeTransactionCompletionProcess
public class EntityVerifyVersionProcess extends Object implements BeforeTransactionCompletionProcess
ABeforeTransactionCompletionProcess
impl to verify an entity version as part of before-transaction-completion processing.
-
-
Constructor Summary
Constructors Constructor Description EntityVerifyVersionProcess(Object object)
Constructs an EntityVerifyVersionProcess
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
doBeforeTransactionCompletion(SessionImplementor session)
Perform whatever processing is encapsulated here before completion of the transaction.
-
-
-
Constructor Detail
-
EntityVerifyVersionProcess
public EntityVerifyVersionProcess(Object object)
Constructs an EntityVerifyVersionProcess- Parameters:
object
- The entity instance
-
-
Method Detail
-
doBeforeTransactionCompletion
public void doBeforeTransactionCompletion(SessionImplementor session)
Description copied from interface:BeforeTransactionCompletionProcess
Perform whatever processing is encapsulated here before completion of the transaction.- Specified by:
doBeforeTransactionCompletion
in interfaceBeforeTransactionCompletionProcess
- Parameters:
session
- The session on which the transaction is preparing to complete.
-
-