All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alicp.jetcache.autoconfigure.AutoConfigureBeans Maven / Gradle / Ivy

The newest version!
package com.alicp.jetcache.autoconfigure;

import com.alicp.jetcache.CacheBuilder;

import java.util.Collections;
import java.util.HashMap;
import java.util.Map;

/**
 * Created on 2016/12/28.
 *
 * @author huangli
 */
public class AutoConfigureBeans {

    private Map localCacheBuilders = new HashMap<>();

    private Map remoteCacheBuilders = new HashMap<>();

    private Map customContainer = Collections.synchronizedMap(new HashMap<>());

    public Map getLocalCacheBuilders() {
        return localCacheBuilders;
    }

    public void setLocalCacheBuilders(Map localCacheBuilders) {
        this.localCacheBuilders = localCacheBuilders;
    }

    public Map getRemoteCacheBuilders() {
        return remoteCacheBuilders;
    }

    public void setRemoteCacheBuilders(Map remoteCacheBuilders) {
        this.remoteCacheBuilders = remoteCacheBuilders;
    }

    public Map getCustomContainer() {
        return customContainer;
    }

    public void setCustomContainer(Map customContainer) {
        this.customContainer = customContainer;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy