Package org.infinispan.loaders.file

Examples of org.infinispan.loaders.file.SingleFileCacheStoreConfig


            '}';
   }

   @Override
   public SingleFileCacheStoreConfig adapt() {
      SingleFileCacheStoreConfig config = new SingleFileCacheStoreConfig();

      LegacyConfigurationAdaptor.adapt(this, config);

      config.location(location);
      config.maxEntries(maxEntries);

      XmlConfigHelper.setValues(config, properties(), false, true);
      return config;
   }
View Full Code Here

TOP

Related Classes of org.infinispan.loaders.file.SingleFileCacheStoreConfig

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.