|
|
@ -47,7 +47,7 @@ public class CacheProperties {
|
|
|
|
* Comma-separated list of cache names to create if supported by the underlying cache
|
|
|
|
* Comma-separated list of cache names to create if supported by the underlying cache
|
|
|
|
* manager. Usually, this disables the ability to create additional caches on-the-fly.
|
|
|
|
* manager. Usually, this disables the ability to create additional caches on-the-fly.
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
private final List<String> cacheNames = new ArrayList<String>();
|
|
|
|
private List<String> cacheNames = new ArrayList<String>();
|
|
|
|
|
|
|
|
|
|
|
|
private final JCache jcache = new JCache();
|
|
|
|
private final JCache jcache = new JCache();
|
|
|
|
|
|
|
|
|
|
|
@ -73,6 +73,10 @@ public class CacheProperties {
|
|
|
|
return this.cacheNames;
|
|
|
|
return this.cacheNames;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setCacheNames(List<String> cacheNames) {
|
|
|
|
|
|
|
|
this.cacheNames = cacheNames;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public JCache getJcache() {
|
|
|
|
public JCache getJcache() {
|
|
|
|
return this.jcache;
|
|
|
|
return this.jcache;
|
|
|
|
}
|
|
|
|
}
|
|
|
|