Uses of Interface
javax.cache.CacheManager
-
Packages that use CacheManager Package Description javax.cache This package contains the API for JCache.javax.cache.spi The javax.cache.spi package defines the classes and interfaces that are implemented by the caching provider for use by theCaching
class -
-
Uses of CacheManager in javax.cache
Methods in javax.cache that return CacheManager Modifier and Type Method Description CacheManager
Cache. getCacheManager()
Gets theCacheManager
that owns and manages theCache
. -
Uses of CacheManager in javax.cache.spi
Methods in javax.cache.spi that return CacheManager Modifier and Type Method Description CacheManager
CachingProvider. getCacheManager()
Requests aCacheManager
configured according to theCachingProvider.getDefaultURI()
andCachingProvider.getDefaultProperties()
be made available that using theCachingProvider.getDefaultClassLoader()
for loading underlying classes.CacheManager
CachingProvider. getCacheManager(URI uri, ClassLoader classLoader)
Requests aCacheManager
configured according to the implementation specificURI
that uses the providedClassLoader
for loading underlying classes.CacheManager
CachingProvider. getCacheManager(URI uri, ClassLoader classLoader, Properties properties)
Requests aCacheManager
configured according to the implementation specificURI
be made available that uses the providedClassLoader
for loading underlying classes.
-