HHH-12531 Make the legacy names public so that Infinispan can reuse them

This commit is contained in:
Guillaume Smet 2018-07-04 16:15:41 +02:00
parent 3883abf087
commit 88bfe7e66c
1 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@ public abstract class AbstractRegionFactory implements RegionFactory {
/**
* Legacy names that used to be the default for the query results region.
*/
protected static final List<String> LEGACY_QUERY_RESULTS_REGION_UNQUALIFIED_NAMES =
public static final List<String> LEGACY_QUERY_RESULTS_REGION_UNQUALIFIED_NAMES =
Collections.unmodifiableList( Arrays.asList(
"org.hibernate.cache.spi.QueryResultsRegion",
"org.hibernate.cache.internal.StandardQueryCache"
@ -38,7 +38,7 @@ public abstract class AbstractRegionFactory implements RegionFactory {
/**
* Legacy names that used to be the default for the update timestamps region.
*/
protected static final List<String> LEGACY_UPDATE_TIMESTAMPS_REGION_UNQUALIFIED_NAMES =
public static final List<String> LEGACY_UPDATE_TIMESTAMPS_REGION_UNQUALIFIED_NAMES =
Collections.unmodifiableList( Arrays.asList(
"org.hibernate.cache.spi.TimestampsRegion",
"org.hibernate.cache.spi.UpdateTimestampsCache"