Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,8 @@
*
* @see org.hibernate.query.Query#setCacheMode(CacheMode)
* @see org.hibernate.jpa.SpecHints#HINT_SPEC_CACHE_STORE_MODE
*
* @since 6.2
*/
CacheStoreMode cacheStoreMode() default CacheStoreMode.USE;

Expand All @@ -140,6 +142,8 @@
*
* @see org.hibernate.query.Query#setCacheMode(CacheMode)
* @see org.hibernate.jpa.SpecHints#HINT_SPEC_CACHE_RETRIEVE_MODE
*
* @since 6.2
*/
CacheRetrieveMode cacheRetrieveMode() default CacheRetrieveMode.USE;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@
* {@link EntityManager#createNamedQuery(String, Class)}.
*
* @see jakarta.persistence.NamedQuery#resultClass()
*
* @since 7.0
*/
Class<?> resultClass() default void.class;

Expand Down Expand Up @@ -127,6 +129,8 @@
*
* @see org.hibernate.query.Query#setCacheStoreMode(CacheStoreMode)
* @see org.hibernate.jpa.SpecHints#HINT_SPEC_CACHE_STORE_MODE
*
* @since 6.2
*/
CacheStoreMode cacheStoreMode() default CacheStoreMode.USE;

Expand All @@ -135,6 +139,8 @@
*
* @see org.hibernate.query.Query#setCacheRetrieveMode(CacheRetrieveMode)
* @see org.hibernate.jpa.SpecHints#HINT_SPEC_CACHE_RETRIEVE_MODE
*
* @since 6.2
*/
CacheRetrieveMode cacheRetrieveMode() default CacheRetrieveMode.USE;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public enum QueryFlushMode {
*/
NO_FLUSH,
/**
* Let the owning {@link org.hibernate.Session session}
* Let the owning {@linkplain org.hibernate.Session session}
* decide whether to flush, depending on its current
* {@link org.hibernate.FlushMode}.
*
Expand Down