Examples of DummyCacheProvider


Examples of org.jahia.services.cache.dummy.DummyCacheProvider

    }

    public void start() throws JahiaInitializationException {
      if (cacheProviders.isEmpty()) {
        logger.warn("No cache provider are configured. Using no-cache provider as a default one.");
        cacheProviders.put(DEFAULT_CACHE, new DummyCacheProvider());
      }
      for (CacheProvider cacheProvider : cacheProviders.values()) {
            cacheProvider.init(settingsBean,this);
        }
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.