add missing package-info
This commit is contained in:
parent
c8d13108b5
commit
594fd2f4aa
|
@ -0,0 +1,16 @@
|
|||
/*
|
||||
* Hibernate, Relational Persistence for Idiomatic Java
|
||||
*
|
||||
* License: GNU Lesser General Public License (LGPL), version 2.1 or later.
|
||||
* See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
|
||||
*/
|
||||
|
||||
/**
|
||||
* Implementations of {@link org.hibernate.resource.transaction.spi.TransactionCoordinator}
|
||||
* based on JTA.
|
||||
* <p>
|
||||
* The {@link org.hibernate.resource.transaction.backend.jta.internal.JtaTransactionAdapter}
|
||||
* abstracts over access to JTA via {@link jakarta.transaction.UserTransaction} or via
|
||||
* {@link jakarta.transaction.TransactionManager}.
|
||||
*/
|
||||
package org.hibernate.resource.transaction.backend.jta.internal;
|
|
@ -7,5 +7,8 @@
|
|||
|
||||
/**
|
||||
* Extended SPI contracts for the resource-level transaction capabilities of Hibernate.
|
||||
* Underlies the {@link org.hibernate.Transaction} API.
|
||||
*
|
||||
* @see org.hibernate.resource.transaction.spi.TransactionCoordinator
|
||||
*/
|
||||
package org.hibernate.resource.transaction.spi;
|
||||
|
|
Loading…
Reference in New Issue