Package com.evolveum.midpoint.repo.api
Interface Cache
-
- All Known Implementing Classes:
ArchetypeManager
,ExpressionFactory
,RepositoryCache
,ScriptExpressionFactory
,SystemConfigurationCacheAdapter
,SystemObjectCache
,TriggerCreatorGlobalState
public interface Cache
Defines basic contract for local caches (various caching components or services).
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
dumpContent()
@NotNull Collection<SingleCacheStateInformationType>
getStateInformation()
void
invalidate(Class<?> type, String oid, CacheInvalidationContext context)
-
-
-
Method Detail
-
invalidate
void invalidate(Class<?> type, String oid, CacheInvalidationContext context)
-
getStateInformation
@NotNull @NotNull Collection<SingleCacheStateInformationType> getStateInformation()
-
dumpContent
void dumpContent()
-
-