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

twitter4jads.conf.ConfigurationContext Maven / Gradle / Ivy

The newest version!
package twitter4jads.conf;


/**
 * Static factory of Configuration. This class wraps ConfigurationFactory implementations.
* By default, twitter4jads.conf.PropertyConfigurationFactory will be used and can be changed with -Dtwitter4jads.configurationFactory system property. * * */ public final class ConfigurationContext { public static final String DEFAULT_CONFIGURATION_FACTORY = "twitter4jads.conf.PropertyConfigurationFactory"; public static final String CONFIGURATION_IMPL = "twitter4jads.configurationFactory"; private static final ConfigurationFactory factory; static { String CONFIG_IMPL; try { CONFIG_IMPL = System.getProperty(CONFIGURATION_IMPL, DEFAULT_CONFIGURATION_FACTORY); } catch (SecurityException ignore) { // Unsigned applets are not allowed to access System properties CONFIG_IMPL = DEFAULT_CONFIGURATION_FACTORY; } try { factory = (ConfigurationFactory) Class.forName(CONFIG_IMPL).newInstance(); } catch (ClassNotFoundException cnfe) { throw new AssertionError(cnfe); } catch (InstantiationException ie) { throw new AssertionError(ie); } catch (IllegalAccessException iae) { throw new AssertionError(iae); } } public static Configuration getInstance() { return factory.getInstance(); } public static Configuration getInstance(String configTreePath) { return factory.getInstance(configTreePath); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy