@@ -183,13 +183,13 @@ public interface Session extends SharedSessionContract, EntityManager {
183183 void setFlushMode (FlushModeType flushMode );
184184
185185 /**
186- * Set the current {@link FlushMode flush mode} for this session.
186+ * Set the current {@linkplain FlushMode flush mode} for this session.
187187 * <p>
188188 * <em>Flushing</em> is the process of synchronizing the underlying persistent
189189 * store with persistable state held in memory. The current flush mode determines
190190 * when the session is automatically flushed.
191191 * <p>
192- * The {@link FlushMode#AUTO default flush mode} is sometimes unnecessarily
192+ * The {@linkplain FlushMode#AUTO default flush mode} is sometimes unnecessarily
193193 * aggressive. For a logically "read only" session, it's reasonable to set the
194194 * session's flush mode to {@link FlushMode#MANUAL} at the start of the session
195195 * in order to avoid some unnecessary work.
@@ -201,22 +201,22 @@ public interface Session extends SharedSessionContract, EntityManager {
201201 void setHibernateFlushMode (FlushMode flushMode );
202202
203203 /**
204- * Get the current {@link FlushModeType JPA flush mode} for this session.
204+ * Get the current {@linkplain FlushModeType JPA flush mode} for this session.
205205 *
206206 * @return the {@link FlushModeType} currently in effect
207207 */
208208 @ Override
209209 FlushModeType getFlushMode ();
210210
211211 /**
212- * Get the current {@link FlushMode flush mode} for this session.
212+ * Get the current {@linkplain FlushMode flush mode} for this session.
213213 *
214214 * @return the {@link FlushMode} currently in effect
215215 */
216216 FlushMode getHibernateFlushMode ();
217217
218218 /**
219- * Set the current {@link CacheMode cache mode} for this session.
219+ * Set the current {@linkplain CacheMode cache mode} for this session.
220220 * <p>
221221 * The cache mode determines the manner in which this session can interact with
222222 * the second level cache.
@@ -226,7 +226,7 @@ public interface Session extends SharedSessionContract, EntityManager {
226226 void setCacheMode (CacheMode cacheMode );
227227
228228 /**
229- * Get the current {@link CacheMode cache mode} for this session.
229+ * Get the current {@linkplain CacheMode cache mode} for this session.
230230 *
231231 * @return the current cache mode
232232 */
0 commit comments