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

com.github.ibole.infrastructure.common.properties.ConfigurationHolder Maven / Gradle / Ivy

The newest version!
package com.github.ibole.infrastructure.common.properties;

import java.util.Map;

/*********************************************************************************************.
 * 
 * 
 * 

Copyright 2016, iBole Inc. All rights reserved. * *

*********************************************************************************************/ /** * Holder for bootstrap configuration properties. * */ public final class ConfigurationHolder { private static Map props; private ConfigurationHolder() { // empty } public static void set(final Map properties) { props = properties; } public static Map get() { return props; } public static void unset() { props.clear(); props = null; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy