Class CacheRegistryImpl
- java.lang.Object
-
- com.evolveum.midpoint.repo.cache.registry.CacheRegistryImpl
-
- All Implemented Interfaces:
CacheInvalidationListener,CacheListener,CacheRegistry
@Component("cacheRegistry") public class CacheRegistryImpl extends Object implements CacheListener, CacheRegistryRegistry of all local caches (various caching components or services).Note that this class resides in repo-cache module almost by accident and perhaps should be moved to a more appropriate place.
-
-
Constructor Summary
Constructors Constructor Description CacheRegistryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddumpContent()CachesStateInformationTypegetStateInformation()<O extends ObjectType>
voidinvalidate(Class<O> type, String oid, boolean clusterwide, CacheInvalidationContext context)Invalidates given object(s) in all relevant caches.voidregisterCache(Cache cache)voidregisterListener()voidunregisterCache(Cache cache)voidunregisterListener()-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.evolveum.midpoint.repo.api.CacheListener
getEventSpecifications
-
-
-
-
Method Detail
-
registerListener
@PostConstruct public void registerListener()
-
unregisterListener
@PreDestroy public void unregisterListener()
-
registerCache
public void registerCache(Cache cache)
- Specified by:
registerCachein interfaceCacheRegistry
-
unregisterCache
public void unregisterCache(Cache cache)
- Specified by:
unregisterCachein interfaceCacheRegistry
-
invalidate
public <O extends ObjectType> void invalidate(Class<O> type, String oid, boolean clusterwide, CacheInvalidationContext context)
Description copied from interface:CacheInvalidationListenerInvalidates given object(s) in all relevant caches.- Specified by:
invalidatein interfaceCacheInvalidationListener- Parameters:
type- Type of object (null means all types).oid- OID of object (null means all object(s) of given type(s)).clusterwide- Whether to distribute this event clusterwide.context- Context of the invalidation request (optional).
-
getStateInformation
public CachesStateInformationType getStateInformation()
- Specified by:
getStateInformationin interfaceCacheRegistry
-
dumpContent
public void dumpContent()
- Specified by:
dumpContentin interfaceCacheRegistry
-
-