add missing package-info

This commit is contained in:
Gavin King 2024-02-07 10:10:49 +01:00
parent c8d13108b5
commit 594fd2f4aa
2 changed files with 19 additions and 0 deletions

View File

@ -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;

View File

@ -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;