File tree Expand file tree Collapse file tree 3 files changed +11
-1
lines changed
hibernate-core/src/main/java/org/hibernate Expand file tree Collapse file tree 3 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 132132 *
133133 * @see org.hibernate.query.Query#setCacheMode(CacheMode)
134134 * @see org.hibernate.jpa.SpecHints#HINT_SPEC_CACHE_STORE_MODE
135+ *
136+ * @since 6.2
135137 */
136138 CacheStoreMode cacheStoreMode () default CacheStoreMode .USE ;
137139
140142 *
141143 * @see org.hibernate.query.Query#setCacheMode(CacheMode)
142144 * @see org.hibernate.jpa.SpecHints#HINT_SPEC_CACHE_RETRIEVE_MODE
145+ *
146+ * @since 6.2
143147 */
144148 CacheRetrieveMode cacheRetrieveMode () default CacheRetrieveMode .USE ;
145149
Original file line number Diff line number Diff line change 5454 * {@link EntityManager#createNamedQuery(String, Class)}.
5555 *
5656 * @see jakarta.persistence.NamedQuery#resultClass()
57+ *
58+ * @since 7.0
5759 */
5860 Class <?> resultClass () default void .class ;
5961
127129 *
128130 * @see org.hibernate.query.Query#setCacheStoreMode(CacheStoreMode)
129131 * @see org.hibernate.jpa.SpecHints#HINT_SPEC_CACHE_STORE_MODE
132+ *
133+ * @since 6.2
130134 */
131135 CacheStoreMode cacheStoreMode () default CacheStoreMode .USE ;
132136
135139 *
136140 * @see org.hibernate.query.Query#setCacheRetrieveMode(CacheRetrieveMode)
137141 * @see org.hibernate.jpa.SpecHints#HINT_SPEC_CACHE_RETRIEVE_MODE
142+ *
143+ * @since 6.2
138144 */
139145 CacheRetrieveMode cacheRetrieveMode () default CacheRetrieveMode .USE ;
140146
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ public enum QueryFlushMode {
3030 */
3131 NO_FLUSH ,
3232 /**
33- * Let the owning {@link org.hibernate.Session session}
33+ * Let the owning {@linkplain org.hibernate.Session session}
3434 * decide whether to flush, depending on its current
3535 * {@link org.hibernate.FlushMode}.
3636 *
You can’t perform that action at this time.
0 commit comments