add missing package-info
This commit is contained in:
parent
a71bb28a8a
commit
8a07a1131b
|
@ -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.
|
* 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;
|
package org.hibernate.resource.transaction.spi;
|
||||||
|
|
Loading…
Reference in New Issue