use of org.ff4j.services.exceptions.PropertyStoreNotCached in project ff4j by ff4j.
the class PropertyStoreServices method clearCachedPropertyStore.
public void clearCachedPropertyStore() {
FF4jCacheProxy cacheProxy = ff4j.getCacheProxy();
if (cacheProxy == null) {
throw new PropertyStoreNotCached();
}
cacheProxy.getCacheManager().clearProperties();
}
Aggregations