mirror of
https://github.com/hibernate/hibernate-orm
synced 2025-02-27 14:30:16 +00:00
HHH-16695 fill in missing javadoc
This commit is contained in:
parent
cd75b0baf1
commit
d5c4e2673b
@ -104,8 +104,28 @@ default IdentifierLoadAccess<T> with(RootGraph<T> graph) {
|
||||
*/
|
||||
IdentifierLoadAccess<T> with(RootGraph<T> graph, GraphSemantic semantic);
|
||||
|
||||
/**
|
||||
* Customize the associations fetched by specifying a
|
||||
* {@linkplain org.hibernate.annotations.FetchProfile fetch profile}
|
||||
* that should be enabled during this operation.
|
||||
* <p>
|
||||
* This allows the {@linkplain Session#isFetchProfileEnabled(String)
|
||||
* session-level fetch profiles} to be temporarily overridden.
|
||||
*
|
||||
* @since 6.3
|
||||
*/
|
||||
IdentifierLoadAccess<T> enableFetchProfile(String profileName);
|
||||
|
||||
/**
|
||||
* Customize the associations fetched by specifying a
|
||||
* {@linkplain org.hibernate.annotations.FetchProfile fetch profile}
|
||||
* that should be disabled during this operation.
|
||||
* <p>
|
||||
* This allows the {@linkplain Session#isFetchProfileEnabled(String)
|
||||
* session-level fetch profiles} to be temporarily overridden.
|
||||
*
|
||||
* @since 6.3
|
||||
*/
|
||||
IdentifierLoadAccess<T> disableFetchProfile(String profileName);
|
||||
|
||||
/**
|
||||
|
@ -44,8 +44,28 @@ public interface NaturalIdLoadAccess<T> {
|
||||
*/
|
||||
NaturalIdLoadAccess<T> with(LockOptions lockOptions);
|
||||
|
||||
/**
|
||||
* Customize the associations fetched by specifying a
|
||||
* {@linkplain org.hibernate.annotations.FetchProfile fetch profile}
|
||||
* that should be enabled during this operation.
|
||||
* <p>
|
||||
* This allows the {@linkplain Session#isFetchProfileEnabled(String)
|
||||
* session-level fetch profiles} to be temporarily overridden.
|
||||
*
|
||||
* @since 6.3
|
||||
*/
|
||||
NaturalIdLoadAccess<T> enableFetchProfile(String profileName);
|
||||
|
||||
/**
|
||||
* Customize the associations fetched by specifying a
|
||||
* {@linkplain org.hibernate.annotations.FetchProfile fetch profile}
|
||||
* that should be disabled during this operation.
|
||||
* <p>
|
||||
* This allows the {@linkplain Session#isFetchProfileEnabled(String)
|
||||
* session-level fetch profiles} to be temporarily overridden.
|
||||
*
|
||||
* @since 6.3
|
||||
*/
|
||||
NaturalIdLoadAccess<T> disableFetchProfile(String profileName);
|
||||
|
||||
/**
|
||||
|
@ -37,8 +37,28 @@ public interface SimpleNaturalIdLoadAccess<T> {
|
||||
*/
|
||||
SimpleNaturalIdLoadAccess<T> with(LockOptions lockOptions);
|
||||
|
||||
/**
|
||||
* Customize the associations fetched by specifying a
|
||||
* {@linkplain org.hibernate.annotations.FetchProfile fetch profile}
|
||||
* that should be enabled during this operation.
|
||||
* <p>
|
||||
* This allows the {@linkplain Session#isFetchProfileEnabled(String)
|
||||
* session-level fetch profiles} to be temporarily overridden.
|
||||
*
|
||||
* @since 6.3
|
||||
*/
|
||||
SimpleNaturalIdLoadAccess<T> enableFetchProfile(String profileName);
|
||||
|
||||
/**
|
||||
* Customize the associations fetched by specifying a
|
||||
* {@linkplain org.hibernate.annotations.FetchProfile fetch profile}
|
||||
* that should be disabled during this operation.
|
||||
* <p>
|
||||
* This allows the {@linkplain Session#isFetchProfileEnabled(String)
|
||||
* session-level fetch profiles} to be temporarily overridden.
|
||||
*
|
||||
* @since 6.3
|
||||
*/
|
||||
SimpleNaturalIdLoadAccess<T> disableFetchProfile(String profileName);
|
||||
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user