throw new ClusteringNotSupportedException(MESSAGES.failedToConfigureWebApp(cacheServiceName.getParent().getSimpleName(), cacheServiceName.getSimpleName()));
}
String name = manager.getName();
ConfigurationBuilder builder = new ConfigurationBuilder().read(config);
builder.storeAsBinary().enable().storeKeysAsBinary(false).storeValuesAsBinary(true);
container.defineConfiguration(name, builder.build());
AdvancedCache<String, Map<Object, Object>> sessionCache = container.<String, Map<Object, Object>>getCache(name).getAdvancedCache().with(this.getClass().getClassLoader());
BatchingManager batchingManager = new TransactionBatchingManager(sessionCache.getTransactionManager());
SessionAttributeStorage<T> storage = this.storageFactory.createStorage(manager.getReplicationConfig().getReplicationGranularity(), this.marshallerFactory.createMarshaller(manager));