add some missing @since tags

This commit is contained in:
Gavin 2022-12-22 17:57:56 +01:00
parent b684ace7e6
commit 114a82d438
2 changed files with 10 additions and 0 deletions

View File

@ -869,6 +869,8 @@ public class Configuration {
/**
* Add an {@link EntityNameResolver} to this configuration.
*
* @since 6.2
*/
public void addEntityNameResolver(EntityNameResolver entityNameResolver) {
if ( entityNameResolvers == null ) {

View File

@ -287,11 +287,15 @@ public interface SelectionQuery<R> extends CommonQueryContract {
/**
* @see #getCacheMode()
*
* @since 6.2
*/
CacheStoreMode getCacheStoreMode();
/**
* @see #getCacheMode()
*
* @since 6.2
*/
CacheRetrieveMode getCacheRetrieveMode();
@ -308,11 +312,15 @@ public interface SelectionQuery<R> extends CommonQueryContract {
/**
* @see #setCacheMode(CacheMode)
*
* @since 6.2
*/
SelectionQuery<R> setCacheStoreMode(CacheStoreMode cacheStoreMode);
/**
* @see #setCacheMode(CacheMode)
*
* @since 6.2
*/
SelectionQuery<R> setCacheRetrieveMode(CacheRetrieveMode cacheRetrieveMode);