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

com.github.attemper.alarm.Store Maven / Gradle / Ivy

The newest version!
package com.github.attemper.alarm;

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

public class Store {

    private static Map configMap;

    static {
        configMap = new HashMap();
    }

    public static Map getConfigMap() {
        return configMap;
    }

    public static void setConfigMap(Map configMap) {
        Store.configMap = configMap;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy