30 lines
1009 B
Diff
30 lines
1009 B
Diff
--- a/src/main/java/net/sf/ehcache/config/CacheConfiguration.java 2013-01-17 08:54:30.000000000 +0100
|
|
+++ b/src/main/java/net/sf/ehcache/config/CacheConfiguration.java-ebourg 2014-04-07 12:33:12.176458079 +0200
|
|
@@ -2543,7 +2543,7 @@
|
|
/**
|
|
* Accessor
|
|
*/
|
|
- public List getCacheEventListenerConfigurations() {
|
|
+ public List<CacheEventListenerFactoryConfiguration> getCacheEventListenerConfigurations() {
|
|
return cacheEventListenerConfigurations;
|
|
}
|
|
|
|
@@ -2552,7 +2552,7 @@
|
|
*
|
|
* @return the configuration
|
|
*/
|
|
- public List getCacheExtensionConfigurations() {
|
|
+ public List<CacheExtensionFactoryConfiguration> getCacheExtensionConfigurations() {
|
|
return cacheExtensionConfigurations;
|
|
}
|
|
|
|
@@ -2561,7 +2561,7 @@
|
|
*
|
|
* @return the configuration
|
|
*/
|
|
- public List getCacheLoaderConfigurations() {
|
|
+ public List<CacheLoaderFactoryConfiguration> getCacheLoaderConfigurations() {
|
|
return cacheLoaderConfigurations;
|
|
}
|
|
|