HHH-12531 Make the legacy names public so that Infinispan can reuse them
This commit is contained in:
parent
3883abf087
commit
88bfe7e66c
|
@ -29,7 +29,7 @@ public abstract class AbstractRegionFactory implements RegionFactory {
|
||||||
/**
|
/**
|
||||||
* Legacy names that used to be the default for the query results region.
|
* 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(
|
Collections.unmodifiableList( Arrays.asList(
|
||||||
"org.hibernate.cache.spi.QueryResultsRegion",
|
"org.hibernate.cache.spi.QueryResultsRegion",
|
||||||
"org.hibernate.cache.internal.StandardQueryCache"
|
"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.
|
* 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(
|
Collections.unmodifiableList( Arrays.asList(
|
||||||
"org.hibernate.cache.spi.TimestampsRegion",
|
"org.hibernate.cache.spi.TimestampsRegion",
|
||||||
"org.hibernate.cache.spi.UpdateTimestampsCache"
|
"org.hibernate.cache.spi.UpdateTimestampsCache"
|
||||||
|
|
Loading…
Reference in New Issue