Skip to content

Commit b1cb1b7

Browse files
gavinkingsebersole
andcommitted
Apply suggestions from code review
Co-authored-by: Steve Ebersole <[email protected]>
1 parent 72c9839 commit b1cb1b7

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

hibernate-core/src/main/java/org/hibernate/Session.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1275,6 +1275,7 @@ public interface Session extends SharedSessionContract, EntityManager {
12751275
*
12761276
* @since 7.0
12771277
*/
1278+
@Incubating
12781279
Collection<?> getManagedEntities();
12791280

12801281
/**
@@ -1283,6 +1284,7 @@ public interface Session extends SharedSessionContract, EntityManager {
12831284
*
12841285
* @since 7.0
12851286
*/
1287+
@Incubating
12861288
Collection<?> getManagedEntities(String entityName);
12871289

12881290
/**
@@ -1292,6 +1294,7 @@ public interface Session extends SharedSessionContract, EntityManager {
12921294
*
12931295
* @since 7.0
12941296
*/
1297+
@Incubating
12951298
<E> Collection<E> getManagedEntities(Class<E> entityType);
12961299

12971300
/**
@@ -1301,6 +1304,7 @@ public interface Session extends SharedSessionContract, EntityManager {
13011304
*
13021305
* @since 7.0
13031306
*/
1307+
@Incubating
13041308
<E> Collection<E> getManagedEntities(EntityType<E> entityType);
13051309

13061310
/**

0 commit comments

Comments
 (0)