Package org.jboss.dashboard.database.cache.custom

Examples of org.jboss.dashboard.database.cache.custom.CacheFactory


    public void setCacheUsage(String cacheUsage) {
        this.cacheUsage = cacheUsage;
    }

    public boolean createCustomCacheRegion(String cacheRegionName) {
        CacheFactory cacheFactory = (CacheFactory) Factory.lookup("org.jboss.dashboard.database.cache.custom.CacheFactory");
        cacheFactory.createCustomCache(cacheRegionName);
        return true;
    }
View Full Code Here


        cacheFactory.createCustomCache(cacheRegionName);
        return true;
    }

    public boolean freeAllCache() {
        CacheFactory cacheFactory = (CacheFactory) Factory.lookup("org.jboss.dashboard.database.cache.custom.CacheFactory");
        cacheFactory.multiCacheManager.clearAllCaches();
        return true;
    }
View Full Code Here

TOP

Related Classes of org.jboss.dashboard.database.cache.custom.CacheFactory

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.