fr.ms.log4jdbc.utils.Log4JdbcProperty Maven / Gradle / Ivy
package fr.ms.log4jdbc.utils;
public final class Log4JdbcProperty {
public final static boolean getProperty(final String key, final boolean defaultValue) {
final String property = System.getProperty(key, new Boolean(defaultValue).toString());
return Boolean.valueOf(property).booleanValue();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy