} else if (loader instanceof FileCacheStoreConfiguration) {
FileCacheStoreConfig fcsc = new FileCacheStoreConfig();
clc = fcsc;
FileCacheStoreConfiguration store = (FileCacheStoreConfiguration) loader;
if (store.location() != null) {
fcsc.location(store.location());
}
if (store.fsyncMode() != null) {
fcsc.fsyncMode(FileCacheStoreConfig.FsyncMode.valueOf(store.fsyncMode().name()));
}
fcsc.fsyncInterval(store.fsyncInterval());