KeyMapper keyMapper = new GlassFishKeyMapper(conf.getInstanceName(), conf.getClusterName());
conf.getVendorSpecificSettings().put("key.mapper", keyMapper);
Class<V> vClazz = conf.getValueClazz();
if (Storeable.class.isAssignableFrom(vClazz)) {
StoreableReplicatedBackingStore srbs = new StoreableReplicatedBackingStore();
srbs.initialize(conf);
return srbs;
} else {
ReplicatedBackingStore<K, V> bStore = new ReplicatedBackingStore<K, V>();
bStore.initialize(conf);
System.out.println("GlassFish2ShoalBackingStoreFactory:: CREATED an instance of: " + bStore.getClass().getName());