StoreManager sm = newStoreManager();
DelegatingStoreManager dsm = null;
if (_conf.getDataCacheManagerInstance().getSystemDataCache() != null) {
WriteBehindCache wbCache = _conf.getWriteBehindCacheManagerInstance().getSystemWriteBehindCache();
if (wbCache != null) {
dsm = new DataCacheStoreManager(new WriteBehindStoreManager(sm, wbCache));
} else {
dsm = new DataCacheStoreManager(sm);
}
}
dsm = new ROPStoreManager((dsm == null) ? sm : dsm);