Skip to content

Commit dfe0db7

Browse files
committed
add missing @SInCE annotations
1 parent 02bbca8 commit dfe0db7

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

hibernate-core/src/main/java/org/hibernate/engine/creation/internal/SessionCreationOptions.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@
2121
* used when creating sessions.
2222
*
2323
* @author Steve Ebersole
24+
*
25+
* @since 7.2
2426
*/
2527
public interface SessionCreationOptions {
2628

hibernate-core/src/main/java/org/hibernate/engine/creation/internal/SharedSessionCreationOptions.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717
* @author Steve Ebersole
1818
*
1919
* @see org.hibernate.SharedSessionBuilder
20+
*
21+
* @since 7.2
2022
*/
2123
public interface SharedSessionCreationOptions extends SessionCreationOptions {
2224
boolean isTransactionCoordinatorShared();

hibernate-core/src/main/java/org/hibernate/internal/CommonSharedSessionCreationOptions.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,12 @@
1414
* Creation options for shared {@linkplain org.hibernate.engine.spi.SessionImplementor stateful}
1515
* and {@linkplain org.hibernate.engine.spi.StatelessSessionImplementor stateless} sessions.
1616
*
17-
* @implNote At the moment this is only used in the creation of {@linkplain org.hibernate.engine.spi.StatelessSessionImplementor stateless} sessions.
17+
* @implNote At the moment this is only used in the creation of
18+
* {@linkplain org.hibernate.engine.spi.StatelessSessionImplementor stateless sessions}.
1819
*
1920
* @author Steve Ebersole
21+
*
22+
* @since 7.2
2023
*/
2124
public interface CommonSharedSessionCreationOptions {
2225

0 commit comments

Comments
 (0)