HHH-15099 - Improve handling of associations marked with @NotFound

- Javadoc improvements for `@NotFound`-related tests
This commit is contained in:
Steve Ebersole 2022-03-04 07:11:06 -06:00
parent d52ebfb41d
commit ceb7df0c51
2 changed files with 34 additions and 0 deletions

View File

@ -0,0 +1,17 @@
/*
* 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
*/
/**
* Tests for how {@link org.hibernate.annotations.NotFound} mappings
* work with bytecode enhancement.
*
* See tests in {@link org.hibernate.orm.test.notfound} for tests
* specific to {@link org.hibernate.annotations.NotFound} mappings
*
* @author Steve Ebersole
*/
package org.hibernate.orm.test.bytecode.enhancement.lazy.notfound;

View File

@ -0,0 +1,17 @@
/*
* 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
*/
/**
* Tests for {@link org.hibernate.annotations.NotFound} mappings
*
* See also {@link org.hibernate.orm.test.bytecode.enhancement.lazy.notfound} for
* tests related to how {@link org.hibernate.annotations.NotFound} mappings work
* with bytecode enhancement
*
* @author Steve Ebersole
*/
package org.hibernate.orm.test.notfound;