Java javax.persistence EntityTransaction fields, constructors, methods, implement or subclass

Example usage for Java javax.persistence EntityTransaction fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.persistence EntityTransaction.

The text is from its open source code.

Implementation

javax.persistence.EntityTransaction has the following implementations.
Click this link to see all its implementation.

Method

voidbegin()
Start a resource transaction.
voidcommit()
Commit the current resource transaction, writing any unflushed changes to the database.
booleanequals(Object obj)
Indicates whether some other object is "equal to" this one.
booleangetRollbackOnly()
Determine whether the current resource transaction has been marked for rollback.
booleanisActive()
Indicate whether a resource transaction is in progress.
voidrollback()
Roll back the current resource transaction.
voidsetRollbackOnly()
Mark the current resource transaction so that the only possible outcome of the transaction is for the transaction to be rolled back.