legacy.getSingletonStoreConfig().pushStateTimeout(config.singletonStore().pushStateTimeout());
legacy.getSingletonStoreConfig().pushStateWhenCoordinator(config.singletonStore().pushStateWhenCoordinator());
if (config instanceof LockSupportCacheStoreConfiguration) {
LockSupportCacheStoreConfiguration lockConfig = (LockSupportCacheStoreConfiguration) config;
LockSupportCacheStoreConfig lockLegacy = (LockSupportCacheStoreConfig) legacy;
lockLegacy.setLockAcquistionTimeout(lockConfig.lockAcquistionTimeout());
lockLegacy.setLockConcurrencyLevel(lockConfig.lockConcurrencyLevel());
}
}